Uses of Class
com.sun.xml.ws.policy.PolicyMapKey

Packages that use PolicyMapKey
com.sun.xml.ws.addressing.policy   
com.sun.xml.ws.encoding.policy   
com.sun.xml.ws.policy The root package of public policy API. 
com.sun.xml.ws.policy.jaxws.spi   
com.sun.xml.ws.policy.subject Provides utility classes and objects that can serve as policy subjects for PolicySubject
com.sun.xml.ws.rx.mc.policy.spi_impl   
com.sun.xml.ws.rx.rm.policy.spi_impl   
com.sun.xml.ws.security.addressing.policy   
com.sun.xml.ws.security.impl.policy   
com.sun.xml.ws.transport.tcp.policy   
com.sun.xml.ws.tx.at.policy.spi_impl   
com.sun.xml.wss.jaxws.impl   
com.sun.xml.wss.provider.wsit   
 

Uses of PolicyMapKey in com.sun.xml.ws.addressing.policy
 

Methods in com.sun.xml.ws.addressing.policy with parameters of type PolicyMapKey
 Collection<WebServiceFeature> AddressingFeatureConfigurator.getFeatures(PolicyMapKey key, PolicyMap policyMap)
           
 

Uses of PolicyMapKey in com.sun.xml.ws.encoding.policy
 

Methods in com.sun.xml.ws.encoding.policy with parameters of type PolicyMapKey
 Collection<WebServiceFeature> FastInfosetFeatureConfigurator.getFeatures(PolicyMapKey key, PolicyMap policyMap)
          Process FastInfoset policy assertions.
 Collection<WebServiceFeature> MtomFeatureConfigurator.getFeatures(PolicyMapKey key, PolicyMap policyMap)
          process Mtom policy assertions and if found and is not optional then mtom is enabled on the WSDLBoundPortType
 Collection<WebServiceFeature> SelectOptimalEncodingFeatureConfigurator.getFeatures(PolicyMapKey key, PolicyMap policyMap)
          Process SelectOptimalEncoding policy assertions.
 

Uses of PolicyMapKey in com.sun.xml.ws.policy
 

Methods in com.sun.xml.ws.policy that return PolicyMapKey
static PolicyMapKey PolicyMap.createWsdlEndpointScopeKey(QName service, QName port)
          Creates an endpoint policy scope locator object, that serves as a access key into a PolicyMap where actual endpoint policy scope for given endpoint can be retrieved.
static PolicyMapKey PolicyMap.createWsdlFaultMessageScopeKey(QName service, QName port, QName operation, QName fault)
          Creates a fault message policy scope locator object identified by a bound operation, that serves as a access key into PolicyMap where the actual fault message policy scope for one of the faults of a bound operation can be retrieved.
static PolicyMapKey PolicyMap.createWsdlMessageScopeKey(QName service, QName port, QName operation)
          Creates an input/output message policy scope locator object identified by a bound operation, that serves as a access key into PolicyMap where actual input/output message policy scope for given input message of a bound operation can be retrieved.
static PolicyMapKey PolicyMap.createWsdlOperationScopeKey(QName service, QName port, QName operation)
          Creates an operation policy scope locator object, that serves as a access key into a PolicyMap where actual operation policy scope for given bound operation can be retrieved.
static PolicyMapKey PolicyMap.createWsdlServiceScopeKey(QName service)
          Creates a service policy scope locator object, that serves as a access key into a PolicyMap where actual service policy scope for given service can be retrieved.
 

Methods in com.sun.xml.ws.policy that return types with arguments of type PolicyMapKey
 Collection<PolicyMapKey> PolicyMap.getAllEndpointScopeKeys()
          Returns all endpoint scope keys stored in this policy map
 Collection<PolicyMapKey> PolicyMap.getAllFaultMessageScopeKeys()
          Returns all fault message scope keys stored in this policy map
 Collection<PolicyMapKey> PolicyMap.getAllInputMessageScopeKeys()
          Returns all input message scope keys stored in this policy map
 Collection<PolicyMapKey> PolicyMap.getAllOperationScopeKeys()
          Returns all operation scope keys stored in this policy map
 Collection<PolicyMapKey> PolicyMap.getAllOutputMessageScopeKeys()
          Returns all output message scope keys stored in this policy map
 Collection<PolicyMapKey> PolicyMap.getAllServiceScopeKeys()
          Returns all service scope keys stored in this policy map
 

Methods in com.sun.xml.ws.policy with parameters of type PolicyMapKey
 Policy PolicyMap.getEndpointEffectivePolicy(PolicyMapKey key)
           
 Policy PolicyMap.getFaultMessageEffectivePolicy(PolicyMapKey key)
           
 Policy PolicyMap.getInputMessageEffectivePolicy(PolicyMapKey key)
           
 Policy PolicyMap.getOperationEffectivePolicy(PolicyMapKey key)
           
 Policy PolicyMap.getOutputMessageEffectivePolicy(PolicyMapKey key)
           
 Policy PolicyMap.getServiceEffectivePolicy(PolicyMapKey key)
           
 void PolicyMapExtender.putEndpointSubject(PolicyMapKey key, PolicySubject subject)
           
 void PolicyMapExtender.putFaultMessageSubject(PolicyMapKey key, PolicySubject subject)
           
 void PolicyMapExtender.putInputMessageSubject(PolicyMapKey key, PolicySubject subject)
           
 void PolicyMapExtender.putOperationSubject(PolicyMapKey key, PolicySubject subject)
           
 void PolicyMapExtender.putOutputMessageSubject(PolicyMapKey key, PolicySubject subject)
           
 void PolicyMapExtender.putServiceSubject(PolicyMapKey key, PolicySubject subject)
           
 void EffectivePolicyModifier.setNewEffectivePolicyForEndpointScope(PolicyMapKey key, Policy newEffectivePolicy)
          Replaces current effective policy on the endpoint scope (identified by a key parameter) with the new efective policy provided as a second input parameter.
 void EffectivePolicyModifier.setNewEffectivePolicyForFaultMessageScope(PolicyMapKey key, Policy newEffectivePolicy)
          Replaces current effective policy on the fault message scope (identified by a key parameter) with the new efective policy provided as a second input parameter.
 void EffectivePolicyModifier.setNewEffectivePolicyForInputMessageScope(PolicyMapKey key, Policy newEffectivePolicy)
          Replaces current effective policy on the input message scope (identified by a key parameter) with the new efective policy provided as a second input parameter.
 void EffectivePolicyModifier.setNewEffectivePolicyForOperationScope(PolicyMapKey key, Policy newEffectivePolicy)
          Replaces current effective policy on the operation scope (identified by a key parameter) with the new efective policy provided as a second input parameter.
 void EffectivePolicyModifier.setNewEffectivePolicyForOutputMessageScope(PolicyMapKey key, Policy newEffectivePolicy)
          Replaces current effective policy on the output message scope (identified by a key parameter) with the new efective policy provided as a second input parameter.
 void EffectivePolicyModifier.setNewEffectivePolicyForServiceScope(PolicyMapKey key, Policy newEffectivePolicy)
          Replaces current effective policy on the service scope (identified by a key parameter) with the new efective policy provided as a second input parameter.
 

Uses of PolicyMapKey in com.sun.xml.ws.policy.jaxws.spi
 

Methods in com.sun.xml.ws.policy.jaxws.spi with parameters of type PolicyMapKey
 Collection<WebServiceFeature> PolicyFeatureConfigurator.getFeatures(PolicyMapKey key, PolicyMap policyMap)
          A callback method that allows to retrieve policy related information from provided PolicyMap and return a list of corresponding WebServiceFeatures.
 

Uses of PolicyMapKey in com.sun.xml.ws.policy.subject
 

Methods in com.sun.xml.ws.policy.subject that return PolicyMapKey
 PolicyMapKey PolicyMapKeyConverter.getPolicyMapKey(WsdlBindingSubject subject)
           
 

Uses of PolicyMapKey in com.sun.xml.ws.rx.mc.policy.spi_impl
 

Methods in com.sun.xml.ws.rx.mc.policy.spi_impl with parameters of type PolicyMapKey
 Collection<WebServiceFeature> McFeatureConfigurator.getFeatures(PolicyMapKey key, PolicyMap policyMap)
          Process WS-MC policy assertions and if found and is not optional then MC is enabled on the WSDLPort
 

Uses of PolicyMapKey in com.sun.xml.ws.rx.rm.policy.spi_impl
 

Methods in com.sun.xml.ws.rx.rm.policy.spi_impl with parameters of type PolicyMapKey
 Collection<WebServiceFeature> RmFeatureConfigurator.getFeatures(PolicyMapKey key, PolicyMap policyMap)
          Process WS-RM policy assertions and if found and is not optional then RM is enabled on the WSDLPort
 

Uses of PolicyMapKey in com.sun.xml.ws.security.addressing.policy
 

Methods in com.sun.xml.ws.security.addressing.policy with parameters of type PolicyMapKey
 Collection<WebServiceFeature> WsawAddressingFeatureConfigurator.getFeatures(PolicyMapKey key, PolicyMap policyMap)
          process addressing policy assertions and if found and are not optional then addressing is enabled on the WSDLBoundPortType
 

Uses of PolicyMapKey in com.sun.xml.ws.security.impl.policy
 

Methods in com.sun.xml.ws.security.impl.policy with parameters of type PolicyMapKey
 Collection<WebServiceFeature> SecurityFeatureConfigurator.getFeatures(PolicyMapKey key, PolicyMap policyMap)
           
 

Uses of PolicyMapKey in com.sun.xml.ws.transport.tcp.policy
 

Methods in com.sun.xml.ws.transport.tcp.policy with parameters of type PolicyMapKey
 Collection<WebServiceFeature> OptimalTransportFeatureConfigurator.getFeatures(PolicyMapKey key, PolicyMap policyMap)
          process optimized transport policy assertions WSDLPort
 Collection<WebServiceFeature> TCPTransportFeatureConfigurator.getFeatures(PolicyMapKey key, PolicyMap policyMap)
          Process TCP transport policy assertions WSDLPort
 

Uses of PolicyMapKey in com.sun.xml.ws.tx.at.policy.spi_impl
 

Methods in com.sun.xml.ws.tx.at.policy.spi_impl with parameters of type PolicyMapKey
 Collection<WebServiceFeature> AtFeatureConfigurator.getFeatures(PolicyMapKey endpointKey, PolicyMap policyMap)
          Process WS-RM policy assertions and if found and is not optional then RM is enabled on the WSDLPort
 

Uses of PolicyMapKey in com.sun.xml.wss.jaxws.impl
 

Methods in com.sun.xml.wss.jaxws.impl that return PolicyMapKey
protected  PolicyMapKey SecurityTubeBase.getOperationKey(Message message)
           
 

Uses of PolicyMapKey in com.sun.xml.wss.provider.wsit
 

Methods in com.sun.xml.wss.provider.wsit that return PolicyMapKey
protected  PolicyMapKey WSITAuthContextBase.getOperationKey(Message message)
           
 



Copyright © 2005-2015 Oracle Corporation. All Rights Reserved.