Class McPolicyMapConfigurator
- java.lang.Object
-
- com.sun.xml.ws.rx.mc.policy.spi_impl.McPolicyMapConfigurator
-
- All Implemented Interfaces:
PolicyMapConfigurator
public class McPolicyMapConfigurator extends Object implements PolicyMapConfigurator
- Author:
- Marek Potociar
-
-
Constructor Summary
Constructors Constructor Description McPolicyMapConfigurator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Collection<PolicySubject>update(PolicyMap policyMap, SEIModel model, WSBinding wsBinding)A callback method that allows to retrieve policy related information from provided parameters return a collection of new policies that are added to the map.
-
-
-
Method Detail
-
update
public Collection<PolicySubject> update(PolicyMap policyMap, SEIModel model, WSBinding wsBinding) throws PolicyException
Description copied from interface:PolicyMapConfiguratorA callback method that allows to retrieve policy related information from provided parameters return a collection of new policies that are added to the map. When new policies are returned, the caller may merge them with existing policies in the policy map.- Specified by:
updatein interfacePolicyMapConfigurator- Parameters:
policyMap- This map contains the policies that were already createdmodel- The WSDL model of the servicewsBinding- The binding of the service- Returns:
- A collection of policies and the subject to which they are attached. May return null or an empty collection.
- Throws:
PolicyException- Throw this exception if an error occurs
-
-