Java Code Examples for com.sun.xml.internal.ws.policy.PolicyMap#createWsdlOperationScopeKey()
The following examples show how to use
com.sun.xml.internal.ws.policy.PolicyMap#createWsdlOperationScopeKey() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PolicyMapKeyConverter.java From TencentKona-8 with GNU General Public License v2.0 | 6 votes |
public PolicyMapKey getPolicyMapKey(final WsdlBindingSubject subject) { LOGGER.entering(subject); PolicyMapKey key = null; if (subject.isBindingSubject()) { key = PolicyMap.createWsdlEndpointScopeKey(this.serviceName, this.portName); } else if (subject.isBindingOperationSubject()) { key = PolicyMap.createWsdlOperationScopeKey(this.serviceName, this.portName, subject.getName()); } else if (subject.isBindingMessageSubject()) { if (subject.getMessageType() == WsdlMessageType.FAULT) { key = PolicyMap.createWsdlFaultMessageScopeKey(this.serviceName, this.portName, subject.getParent().getName(), subject.getName()); } else { key = PolicyMap.createWsdlMessageScopeKey(this.serviceName, this.portName, subject.getParent().getName()); } } LOGGER.exiting(key); return key; }
Example 2
Source File: PolicyMapKeyConverter.java From jdk8u60 with GNU General Public License v2.0 | 6 votes |
public PolicyMapKey getPolicyMapKey(final WsdlBindingSubject subject) { LOGGER.entering(subject); PolicyMapKey key = null; if (subject.isBindingSubject()) { key = PolicyMap.createWsdlEndpointScopeKey(this.serviceName, this.portName); } else if (subject.isBindingOperationSubject()) { key = PolicyMap.createWsdlOperationScopeKey(this.serviceName, this.portName, subject.getName()); } else if (subject.isBindingMessageSubject()) { if (subject.getMessageType() == WsdlMessageType.FAULT) { key = PolicyMap.createWsdlFaultMessageScopeKey(this.serviceName, this.portName, subject.getParent().getName(), subject.getName()); } else { key = PolicyMap.createWsdlMessageScopeKey(this.serviceName, this.portName, subject.getParent().getName()); } } LOGGER.exiting(key); return key; }
Example 3
Source File: PolicyMapKeyConverter.java From openjdk-jdk8u with GNU General Public License v2.0 | 6 votes |
public PolicyMapKey getPolicyMapKey(final WsdlBindingSubject subject) { LOGGER.entering(subject); PolicyMapKey key = null; if (subject.isBindingSubject()) { key = PolicyMap.createWsdlEndpointScopeKey(this.serviceName, this.portName); } else if (subject.isBindingOperationSubject()) { key = PolicyMap.createWsdlOperationScopeKey(this.serviceName, this.portName, subject.getName()); } else if (subject.isBindingMessageSubject()) { if (subject.getMessageType() == WsdlMessageType.FAULT) { key = PolicyMap.createWsdlFaultMessageScopeKey(this.serviceName, this.portName, subject.getParent().getName(), subject.getName()); } else { key = PolicyMap.createWsdlMessageScopeKey(this.serviceName, this.portName, subject.getParent().getName()); } } LOGGER.exiting(key); return key; }
Example 4
Source File: PolicyMapKeyConverter.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
public PolicyMapKey getPolicyMapKey(final WsdlBindingSubject subject) { LOGGER.entering(subject); PolicyMapKey key = null; if (subject.isBindingSubject()) { key = PolicyMap.createWsdlEndpointScopeKey(this.serviceName, this.portName); } else if (subject.isBindingOperationSubject()) { key = PolicyMap.createWsdlOperationScopeKey(this.serviceName, this.portName, subject.getName()); } else if (subject.isBindingMessageSubject()) { if (subject.getMessageType() == WsdlMessageType.FAULT) { key = PolicyMap.createWsdlFaultMessageScopeKey(this.serviceName, this.portName, subject.getParent().getName(), subject.getName()); } else { key = PolicyMap.createWsdlMessageScopeKey(this.serviceName, this.portName, subject.getParent().getName()); } } LOGGER.exiting(key); return key; }
Example 5
Source File: PolicyMapKeyConverter.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
public PolicyMapKey getPolicyMapKey(final WsdlBindingSubject subject) { LOGGER.entering(subject); PolicyMapKey key = null; if (subject.isBindingSubject()) { key = PolicyMap.createWsdlEndpointScopeKey(this.serviceName, this.portName); } else if (subject.isBindingOperationSubject()) { key = PolicyMap.createWsdlOperationScopeKey(this.serviceName, this.portName, subject.getName()); } else if (subject.isBindingMessageSubject()) { if (subject.getMessageType() == WsdlMessageType.FAULT) { key = PolicyMap.createWsdlFaultMessageScopeKey(this.serviceName, this.portName, subject.getParent().getName(), subject.getName()); } else { key = PolicyMap.createWsdlMessageScopeKey(this.serviceName, this.portName, subject.getParent().getName()); } } LOGGER.exiting(key); return key; }
Example 6
Source File: PolicyMapKeyConverter.java From hottub with GNU General Public License v2.0 | 6 votes |
public PolicyMapKey getPolicyMapKey(final WsdlBindingSubject subject) { LOGGER.entering(subject); PolicyMapKey key = null; if (subject.isBindingSubject()) { key = PolicyMap.createWsdlEndpointScopeKey(this.serviceName, this.portName); } else if (subject.isBindingOperationSubject()) { key = PolicyMap.createWsdlOperationScopeKey(this.serviceName, this.portName, subject.getName()); } else if (subject.isBindingMessageSubject()) { if (subject.getMessageType() == WsdlMessageType.FAULT) { key = PolicyMap.createWsdlFaultMessageScopeKey(this.serviceName, this.portName, subject.getParent().getName(), subject.getName()); } else { key = PolicyMap.createWsdlMessageScopeKey(this.serviceName, this.portName, subject.getParent().getName()); } } LOGGER.exiting(key); return key; }
Example 7
Source File: PolicyMapKeyConverter.java From openjdk-8-source with GNU General Public License v2.0 | 6 votes |
public PolicyMapKey getPolicyMapKey(final WsdlBindingSubject subject) { LOGGER.entering(subject); PolicyMapKey key = null; if (subject.isBindingSubject()) { key = PolicyMap.createWsdlEndpointScopeKey(this.serviceName, this.portName); } else if (subject.isBindingOperationSubject()) { key = PolicyMap.createWsdlOperationScopeKey(this.serviceName, this.portName, subject.getName()); } else if (subject.isBindingMessageSubject()) { if (subject.getMessageType() == WsdlMessageType.FAULT) { key = PolicyMap.createWsdlFaultMessageScopeKey(this.serviceName, this.portName, subject.getParent().getName(), subject.getName()); } else { key = PolicyMap.createWsdlMessageScopeKey(this.serviceName, this.portName, subject.getParent().getName()); } } LOGGER.exiting(key); return key; }
Example 8
Source File: PolicyMapKeyConverter.java From openjdk-8 with GNU General Public License v2.0 | 6 votes |
public PolicyMapKey getPolicyMapKey(final WsdlBindingSubject subject) { LOGGER.entering(subject); PolicyMapKey key = null; if (subject.isBindingSubject()) { key = PolicyMap.createWsdlEndpointScopeKey(this.serviceName, this.portName); } else if (subject.isBindingOperationSubject()) { key = PolicyMap.createWsdlOperationScopeKey(this.serviceName, this.portName, subject.getName()); } else if (subject.isBindingMessageSubject()) { if (subject.getMessageType() == WsdlMessageType.FAULT) { key = PolicyMap.createWsdlFaultMessageScopeKey(this.serviceName, this.portName, subject.getParent().getName(), subject.getName()); } else { key = PolicyMap.createWsdlMessageScopeKey(this.serviceName, this.portName, subject.getParent().getName()); } } LOGGER.exiting(key); return key; }
Example 9
Source File: BuilderHandlerOperationScope.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
protected void doPopulate(final PolicyMapExtender policyMapExtender) throws PolicyException{ final PolicyMapKey mapKey = PolicyMap.createWsdlOperationScopeKey(service, port, operation); for (PolicySubject subject : getPolicySubjects()) { policyMapExtender.putOperationSubject(mapKey, subject); } }
Example 10
Source File: BuilderHandlerOperationScope.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
protected void doPopulate(final PolicyMapExtender policyMapExtender) throws PolicyException{ final PolicyMapKey mapKey = PolicyMap.createWsdlOperationScopeKey(service, port, operation); for (PolicySubject subject : getPolicySubjects()) { policyMapExtender.putOperationSubject(mapKey, subject); } }
Example 11
Source File: BuilderHandlerOperationScope.java From openjdk-jdk8u with GNU General Public License v2.0 | 4 votes |
protected void doPopulate(final PolicyMapExtender policyMapExtender) throws PolicyException{ final PolicyMapKey mapKey = PolicyMap.createWsdlOperationScopeKey(service, port, operation); for (PolicySubject subject : getPolicySubjects()) { policyMapExtender.putOperationSubject(mapKey, subject); } }
Example 12
Source File: BuilderHandlerOperationScope.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
protected void doPopulate(final PolicyMapExtender policyMapExtender) throws PolicyException{ final PolicyMapKey mapKey = PolicyMap.createWsdlOperationScopeKey(service, port, operation); for (PolicySubject subject : getPolicySubjects()) { policyMapExtender.putOperationSubject(mapKey, subject); } }
Example 13
Source File: BuilderHandlerOperationScope.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
protected void doPopulate(final PolicyMapExtender policyMapExtender) throws PolicyException{ final PolicyMapKey mapKey = PolicyMap.createWsdlOperationScopeKey(service, port, operation); for (PolicySubject subject : getPolicySubjects()) { policyMapExtender.putOperationSubject(mapKey, subject); } }
Example 14
Source File: BuilderHandlerOperationScope.java From hottub with GNU General Public License v2.0 | 4 votes |
protected void doPopulate(final PolicyMapExtender policyMapExtender) throws PolicyException{ final PolicyMapKey mapKey = PolicyMap.createWsdlOperationScopeKey(service, port, operation); for (PolicySubject subject : getPolicySubjects()) { policyMapExtender.putOperationSubject(mapKey, subject); } }
Example 15
Source File: BuilderHandlerOperationScope.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
protected void doPopulate(final PolicyMapExtender policyMapExtender) throws PolicyException{ final PolicyMapKey mapKey = PolicyMap.createWsdlOperationScopeKey(service, port, operation); for (PolicySubject subject : getPolicySubjects()) { policyMapExtender.putOperationSubject(mapKey, subject); } }
Example 16
Source File: BuilderHandlerOperationScope.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
protected void doPopulate(final PolicyMapExtender policyMapExtender) throws PolicyException{ final PolicyMapKey mapKey = PolicyMap.createWsdlOperationScopeKey(service, port, operation); for (PolicySubject subject : getPolicySubjects()) { policyMapExtender.putOperationSubject(mapKey, subject); } }