Methods Summary |
---|
public static com.sun.xml.ws.policy.EffectivePolicyModifier | createEffectivePolicyModifier()
return new EffectivePolicyModifier();
|
public void | setNewEffectivePolicyForEndpointScope(PolicyMapKey key, Policy newEffectivePolicy)Replaces current effective policy on the endpoint scope (identified by a {@code key} parameter) with the new efective
policy provided as a second input parameter.
getMap().setNewEffectivePolicyForScope(PolicyMap.ScopeType.ENDPOINT, key, newEffectivePolicy);
|
public void | setNewEffectivePolicyForFaultMessageScope(PolicyMapKey key, Policy newEffectivePolicy)Replaces current effective policy on the fault message scope (identified by a {@code key} parameter) with the new efective
policy provided as a second input parameter. If no policy was defined for the presented key, the new policy is simply
stored with the key.
getMap().setNewEffectivePolicyForScope(PolicyMap.ScopeType.FAULT_MESSAGE, key, newEffectivePolicy);
|
public void | setNewEffectivePolicyForInputMessageScope(PolicyMapKey key, Policy newEffectivePolicy)Replaces current effective policy on the input message scope (identified by a {@code key} parameter) with the new efective
policy provided as a second input parameter. If no policy was defined for the presented key, the new policy is simply
stored with the key.
getMap().setNewEffectivePolicyForScope(PolicyMap.ScopeType.INPUT_MESSAGE, key, newEffectivePolicy);
|
public void | setNewEffectivePolicyForOperationScope(PolicyMapKey key, Policy newEffectivePolicy)Replaces current effective policy on the operation scope (identified by a {@code key} parameter) with the new efective
policy provided as a second input parameter. If no policy was defined for the presented key, the new policy is simply
stored with the key.
getMap().setNewEffectivePolicyForScope(PolicyMap.ScopeType.OPERATION, key, newEffectivePolicy);
|
public void | setNewEffectivePolicyForOutputMessageScope(PolicyMapKey key, Policy newEffectivePolicy)Replaces current effective policy on the output message scope (identified by a {@code key} parameter) with the new efective
policy provided as a second input parameter. If no policy was defined for the presented key, the new policy is simply
stored with the key.
getMap().setNewEffectivePolicyForScope(PolicyMap.ScopeType.OUTPUT_MESSAGE, key, newEffectivePolicy);
|
public void | setNewEffectivePolicyForServiceScope(PolicyMapKey key, Policy newEffectivePolicy)Replaces current effective policy on the service scope (identified by a {@code key} parameter) with the new efective
policy provided as a second input parameter. If no policy was defined for the presented key, the new policy is simply
stored with the key.
getMap().setNewEffectivePolicyForScope(PolicyMap.ScopeType.SERVICE, key, newEffectivePolicy);
|