Lines Matching defs:key

47      * Replaces current effective policy on the service scope (identified by a {@code key} parameter) with the new efective
48 * policy provided as a second input parameter. If no policy was defined for the presented key, the new policy is simply
49 * stored with the key.
51 * @param key identifier of the scope the effective policy should be replaced with the new one. Must not be {@code null}.
57 final PolicyMapKey key, final Policy newEffectivePolicy) {
58 getMap().setNewEffectivePolicyForScope(PolicyMap.ScopeType.SERVICE, key, newEffectivePolicy);
62 * Replaces current effective policy on the endpoint scope (identified by a {@code key} parameter) with the new efective
65 * @param key identifier of the scope the effective policy should be replaced with the new one. Must not be {@code null}.
71 final PolicyMapKey key, final Policy newEffectivePolicy) {
72 getMap().setNewEffectivePolicyForScope(PolicyMap.ScopeType.ENDPOINT, key, newEffectivePolicy);
76 * Replaces current effective policy on the operation scope (identified by a {@code key} parameter) with the new efective
77 * policy provided as a second input parameter. If no policy was defined for the presented key, the new policy is simply
78 * stored with the key.
80 * @param key identifier of the scope the effective policy should be replaced with the new one. Must not be {@code null}.
86 final PolicyMapKey key, final Policy newEffectivePolicy) {
87 getMap().setNewEffectivePolicyForScope(PolicyMap.ScopeType.OPERATION, key, newEffectivePolicy);
91 * Replaces current effective policy on the input message scope (identified by a {@code key} parameter) with the new efective
92 * policy provided as a second input parameter. If no policy was defined for the presented key, the new policy is simply
93 * stored with the key.
95 * @param key identifier of the scope the effective policy should be replaced with the new one. Must not be {@code null}.
101 final PolicyMapKey key, final Policy newEffectivePolicy) {
102 getMap().setNewEffectivePolicyForScope(PolicyMap.ScopeType.INPUT_MESSAGE, key, newEffectivePolicy);
106 * Replaces current effective policy on the output message scope (identified by a {@code key} parameter) with the new efective
107 * policy provided as a second input parameter. If no policy was defined for the presented key, the new policy is simply
108 * stored with the key.
110 * @param key identifier of the scope the effective policy should be replaced with the new one. Must not be {@code null}.
116 final PolicyMapKey key, final Policy newEffectivePolicy) {
117 getMap().setNewEffectivePolicyForScope(PolicyMap.ScopeType.OUTPUT_MESSAGE, key, newEffectivePolicy);
121 * Replaces current effective policy on the fault message scope (identified by a {@code key} parameter) with the new efective
122 * policy provided as a second input parameter. If no policy was defined for the presented key, the new policy is simply
123 * stored with the key.
125 * @param key identifier of the scope the effective policy should be replaced with the new one. Must not be {@code null}.
131 final PolicyMapKey key, final Policy newEffectivePolicy) {
132 getMap().setNewEffectivePolicyForScope(PolicyMap.ScopeType.FAULT_MESSAGE, key, newEffectivePolicy);