com.sun.xml.internal.ws.policy.PolicyMapKey Java Examples
The following examples show how to use
com.sun.xml.internal.ws.policy.PolicyMapKey.
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: MtomFeatureConfigurator.java From openjdk-8-source with GNU General Public License v2.0 | 6 votes |
/** * process Mtom policy assertions and if found and is not optional then mtom is enabled on the * {@link WSDLBoundPortType} * * @param key Key that identifies the endpoint scope * @param policyMap Must be non-null * @throws PolicyException If retrieving the policy triggered an exception */ public Collection<WebServiceFeature> getFeatures(PolicyMapKey key, PolicyMap policyMap) throws PolicyException { final Collection<WebServiceFeature> features = new LinkedList<WebServiceFeature>(); if ((key != null) && (policyMap != null)) { Policy policy = policyMap.getEndpointEffectivePolicy(key); if (null!=policy && policy.contains(OPTIMIZED_MIME_SERIALIZATION_ASSERTION)) { Iterator <AssertionSet> assertions = policy.iterator(); while(assertions.hasNext()){ AssertionSet assertionSet = assertions.next(); Iterator<PolicyAssertion> policyAssertion = assertionSet.iterator(); while(policyAssertion.hasNext()){ PolicyAssertion assertion = policyAssertion.next(); if(OPTIMIZED_MIME_SERIALIZATION_ASSERTION.equals(assertion.getName())){ features.add(new MTOMFeature(true)); } // end-if non optional mtom assertion found } // next assertion } // next alternative } // end-if policy contains mtom assertion } return features; }
Example #2
Source File: FastInfosetFeatureConfigurator.java From openjdk-8-source with GNU General Public License v2.0 | 6 votes |
/** * Process FastInfoset policy assertions. * * @param key Key to identify the endpoint scope. * @param policyMap the policy map. * @throws PolicyException If retrieving the policy triggered an exception. */ public Collection<WebServiceFeature> getFeatures(final PolicyMapKey key, final PolicyMap policyMap) throws PolicyException { final Collection<WebServiceFeature> features = new LinkedList<WebServiceFeature>(); if ((key != null) && (policyMap != null)) { Policy policy = policyMap.getEndpointEffectivePolicy(key); if (null!=policy && policy.contains(OPTIMIZED_FI_SERIALIZATION_ASSERTION)) { Iterator <AssertionSet> assertions = policy.iterator(); while(assertions.hasNext()){ AssertionSet assertionSet = assertions.next(); Iterator<PolicyAssertion> policyAssertion = assertionSet.iterator(); while(policyAssertion.hasNext()){ PolicyAssertion assertion = policyAssertion.next(); if(OPTIMIZED_FI_SERIALIZATION_ASSERTION.equals(assertion.getName())){ String value = assertion.getAttributeValue(enabled); boolean isFastInfosetEnabled = Boolean.valueOf(value.trim()); features.add(new FastInfosetFeature(isFastInfosetEnabled)); } // end-if non optional fast infoset assertion found } // next assertion } // next alternative } // end-if policy contains fast infoset assertion } return features; }
Example #3
Source File: PolicyUtil.java From openjdk-8-source with GNU General Public License v2.0 | 6 votes |
/** * Returns the list of features that correspond to the policies in the policy * map for a give port * * @param policyMap The service policies * @param serviceName The service name * @param portName The service port name * @return List of features for the given port corresponding to the policies in the map */ public static Collection<WebServiceFeature> getPortScopedFeatures(PolicyMap policyMap, QName serviceName, QName portName) { LOGGER.entering(policyMap, serviceName, portName); Collection<WebServiceFeature> features = new ArrayList<WebServiceFeature>(); try { final PolicyMapKey key = PolicyMap.createWsdlEndpointScopeKey(serviceName, portName); for (PolicyFeatureConfigurator configurator : CONFIGURATORS) { Collection<WebServiceFeature> additionalFeatures = configurator.getFeatures(key, policyMap); if (additionalFeatures != null) { features.addAll(additionalFeatures); } } } catch (PolicyException e) { throw new WebServiceException(e); } LOGGER.exiting(features); return features; }
Example #4
Source File: ManagementAssertion.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
/** * Return ManagementAssertion if one can be found in the policy map under * the given service and port name. * * @param <T> The implementation class of the assertion. * @param name The fully qualified name of the server or client assertion. * @param policyMap The policy map. May be null. * @param serviceName The WSDL service name. May not be null. * @param portName The WSDL port name. May not be null. * @param type The implementation class of the assertion. * @return An instance of ManagementAssertion or null. * @throws WebServiceException If computing the effective policy of the endpoint scope failed. */ protected static <T extends ManagementAssertion> T getAssertion(final QName name, final PolicyMap policyMap, QName serviceName, QName portName, Class<T> type) throws WebServiceException { try { PolicyAssertion assertion = null; if (policyMap != null) { final PolicyMapKey key = PolicyMap.createWsdlEndpointScopeKey(serviceName, portName); final Policy policy = policyMap.getEndpointEffectivePolicy(key); if (policy != null) { final Iterator<AssertionSet> assertionSets = policy.iterator(); if (assertionSets.hasNext()) { final AssertionSet assertionSet = assertionSets.next(); final Iterator<PolicyAssertion> assertions = assertionSet.get(name).iterator(); if (assertions.hasNext()) { assertion = assertions.next(); } } } } return assertion == null ? null : assertion.getImplementation(type); } catch (PolicyException ex) { throw LOGGER.logSevereException(new WebServiceException( ManagementMessages.WSM_1001_FAILED_ASSERTION(name), ex)); } }
Example #5
Source File: ManagementAssertion.java From openjdk-8-source with GNU General Public License v2.0 | 6 votes |
/** * Return ManagementAssertion if one can be found in the policy map under * the given service and port name. * * @param <T> The implementation class of the assertion. * @param name The fully qualified name of the server or client assertion. * @param policyMap The policy map. May be null. * @param serviceName The WSDL service name. May not be null. * @param portName The WSDL port name. May not be null. * @param type The implementation class of the assertion. * @return An instance of ManagementAssertion or null. * @throws WebServiceException If computing the effective policy of the endpoint scope failed. */ protected static <T extends ManagementAssertion> T getAssertion(final QName name, final PolicyMap policyMap, QName serviceName, QName portName, Class<T> type) throws WebServiceException { try { PolicyAssertion assertion = null; if (policyMap != null) { final PolicyMapKey key = PolicyMap.createWsdlEndpointScopeKey(serviceName, portName); final Policy policy = policyMap.getEndpointEffectivePolicy(key); if (policy != null) { final Iterator<AssertionSet> assertionSets = policy.iterator(); if (assertionSets.hasNext()) { final AssertionSet assertionSet = assertionSets.next(); final Iterator<PolicyAssertion> assertions = assertionSet.get(name).iterator(); if (assertions.hasNext()) { assertion = assertions.next(); } } } } return assertion == null ? null : assertion.getImplementation(type); } catch (PolicyException ex) { throw LOGGER.logSevereException(new WebServiceException( ManagementMessages.WSM_1001_FAILED_ASSERTION(name), ex)); } }
Example #6
Source File: SelectOptimalEncodingFeatureConfigurator.java From hottub with GNU General Public License v2.0 | 6 votes |
/** * Process SelectOptimalEncoding policy assertions. * * @param key Key that identifies the endpoint scope. * @param policyMap The policy map. * @throws PolicyException If retrieving the policy triggered an exception. */ public Collection<WebServiceFeature> getFeatures(PolicyMapKey key, PolicyMap policyMap) throws PolicyException { final Collection<WebServiceFeature> features = new LinkedList<WebServiceFeature>(); if ((key != null) && (policyMap != null)) { Policy policy = policyMap.getEndpointEffectivePolicy(key); if (null!=policy && policy.contains(SELECT_OPTIMAL_ENCODING_ASSERTION)) { Iterator <AssertionSet> assertions = policy.iterator(); while(assertions.hasNext()){ AssertionSet assertionSet = assertions.next(); Iterator<PolicyAssertion> policyAssertion = assertionSet.iterator(); while(policyAssertion.hasNext()){ PolicyAssertion assertion = policyAssertion.next(); if(SELECT_OPTIMAL_ENCODING_ASSERTION.equals(assertion.getName())){ String value = assertion.getAttributeValue(enabled); boolean isSelectOptimalEncodingEnabled = value == null || Boolean.valueOf(value.trim()); features.add(new SelectOptimalEncodingFeature(isSelectOptimalEncodingEnabled)); } } } } } return features; }
Example #7
Source File: MtomFeatureConfigurator.java From hottub with GNU General Public License v2.0 | 6 votes |
/** * process Mtom policy assertions and if found and is not optional then mtom is enabled on the * {@link WSDLBoundPortType} * * @param key Key that identifies the endpoint scope * @param policyMap Must be non-null * @throws PolicyException If retrieving the policy triggered an exception */ public Collection<WebServiceFeature> getFeatures(PolicyMapKey key, PolicyMap policyMap) throws PolicyException { final Collection<WebServiceFeature> features = new LinkedList<WebServiceFeature>(); if ((key != null) && (policyMap != null)) { Policy policy = policyMap.getEndpointEffectivePolicy(key); if (null!=policy && policy.contains(OPTIMIZED_MIME_SERIALIZATION_ASSERTION)) { Iterator <AssertionSet> assertions = policy.iterator(); while(assertions.hasNext()){ AssertionSet assertionSet = assertions.next(); Iterator<PolicyAssertion> policyAssertion = assertionSet.iterator(); while(policyAssertion.hasNext()){ PolicyAssertion assertion = policyAssertion.next(); if(OPTIMIZED_MIME_SERIALIZATION_ASSERTION.equals(assertion.getName())){ features.add(new MTOMFeature(true)); } // end-if non optional mtom assertion found } // next assertion } // next alternative } // end-if policy contains mtom assertion } return features; }
Example #8
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 #9
Source File: SelectOptimalEncodingFeatureConfigurator.java From openjdk-8-source with GNU General Public License v2.0 | 6 votes |
/** * Process SelectOptimalEncoding policy assertions. * * @param key Key that identifies the endpoint scope. * @param policyMap The policy map. * @throws PolicyException If retrieving the policy triggered an exception. */ public Collection<WebServiceFeature> getFeatures(PolicyMapKey key, PolicyMap policyMap) throws PolicyException { final Collection<WebServiceFeature> features = new LinkedList<WebServiceFeature>(); if ((key != null) && (policyMap != null)) { Policy policy = policyMap.getEndpointEffectivePolicy(key); if (null!=policy && policy.contains(SELECT_OPTIMAL_ENCODING_ASSERTION)) { Iterator <AssertionSet> assertions = policy.iterator(); while(assertions.hasNext()){ AssertionSet assertionSet = assertions.next(); Iterator<PolicyAssertion> policyAssertion = assertionSet.iterator(); while(policyAssertion.hasNext()){ PolicyAssertion assertion = policyAssertion.next(); if(SELECT_OPTIMAL_ENCODING_ASSERTION.equals(assertion.getName())){ String value = assertion.getAttributeValue(enabled); boolean isSelectOptimalEncodingEnabled = value == null || Boolean.valueOf(value.trim()); features.add(new SelectOptimalEncodingFeature(isSelectOptimalEncodingEnabled)); } } } } } return features; }
Example #10
Source File: ManagementAssertion.java From openjdk-8 with GNU General Public License v2.0 | 6 votes |
/** * Return ManagementAssertion if one can be found in the policy map under * the given service and port name. * * @param <T> The implementation class of the assertion. * @param name The fully qualified name of the server or client assertion. * @param policyMap The policy map. May be null. * @param serviceName The WSDL service name. May not be null. * @param portName The WSDL port name. May not be null. * @param type The implementation class of the assertion. * @return An instance of ManagementAssertion or null. * @throws WebServiceException If computing the effective policy of the endpoint scope failed. */ protected static <T extends ManagementAssertion> T getAssertion(final QName name, final PolicyMap policyMap, QName serviceName, QName portName, Class<T> type) throws WebServiceException { try { PolicyAssertion assertion = null; if (policyMap != null) { final PolicyMapKey key = PolicyMap.createWsdlEndpointScopeKey(serviceName, portName); final Policy policy = policyMap.getEndpointEffectivePolicy(key); if (policy != null) { final Iterator<AssertionSet> assertionSets = policy.iterator(); if (assertionSets.hasNext()) { final AssertionSet assertionSet = assertionSets.next(); final Iterator<PolicyAssertion> assertions = assertionSet.get(name).iterator(); if (assertions.hasNext()) { assertion = assertions.next(); } } } } return assertion == null ? null : assertion.getImplementation(type); } catch (PolicyException ex) { throw LOGGER.logSevereException(new WebServiceException( ManagementMessages.WSM_1001_FAILED_ASSERTION(name), ex)); } }
Example #11
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 #12
Source File: PolicyUtil.java From openjdk-8 with GNU General Public License v2.0 | 6 votes |
/** * Returns the list of features that correspond to the policies in the policy * map for a give port * * @param policyMap The service policies * @param serviceName The service name * @param portName The service port name * @return List of features for the given port corresponding to the policies in the map */ public static Collection<WebServiceFeature> getPortScopedFeatures(PolicyMap policyMap, QName serviceName, QName portName) { LOGGER.entering(policyMap, serviceName, portName); Collection<WebServiceFeature> features = new ArrayList<WebServiceFeature>(); try { final PolicyMapKey key = PolicyMap.createWsdlEndpointScopeKey(serviceName, portName); for (PolicyFeatureConfigurator configurator : CONFIGURATORS) { Collection<WebServiceFeature> additionalFeatures = configurator.getFeatures(key, policyMap); if (additionalFeatures != null) { features.addAll(additionalFeatures); } } } catch (PolicyException e) { throw new WebServiceException(e); } LOGGER.exiting(features); return features; }
Example #13
Source File: FastInfosetFeatureConfigurator.java From openjdk-8 with GNU General Public License v2.0 | 6 votes |
/** * Process FastInfoset policy assertions. * * @param key Key to identify the endpoint scope. * @param policyMap the policy map. * @throws PolicyException If retrieving the policy triggered an exception. */ public Collection<WebServiceFeature> getFeatures(final PolicyMapKey key, final PolicyMap policyMap) throws PolicyException { final Collection<WebServiceFeature> features = new LinkedList<WebServiceFeature>(); if ((key != null) && (policyMap != null)) { Policy policy = policyMap.getEndpointEffectivePolicy(key); if (null!=policy && policy.contains(OPTIMIZED_FI_SERIALIZATION_ASSERTION)) { Iterator <AssertionSet> assertions = policy.iterator(); while(assertions.hasNext()){ AssertionSet assertionSet = assertions.next(); Iterator<PolicyAssertion> policyAssertion = assertionSet.iterator(); while(policyAssertion.hasNext()){ PolicyAssertion assertion = policyAssertion.next(); if(OPTIMIZED_FI_SERIALIZATION_ASSERTION.equals(assertion.getName())){ String value = assertion.getAttributeValue(enabled); boolean isFastInfosetEnabled = Boolean.valueOf(value.trim()); features.add(new FastInfosetFeature(isFastInfosetEnabled)); } // end-if non optional fast infoset assertion found } // next assertion } // next alternative } // end-if policy contains fast infoset assertion } return features; }
Example #14
Source File: MtomFeatureConfigurator.java From openjdk-8 with GNU General Public License v2.0 | 6 votes |
/** * process Mtom policy assertions and if found and is not optional then mtom is enabled on the * {@link WSDLBoundPortType} * * @param key Key that identifies the endpoint scope * @param policyMap Must be non-null * @throws PolicyException If retrieving the policy triggered an exception */ public Collection<WebServiceFeature> getFeatures(PolicyMapKey key, PolicyMap policyMap) throws PolicyException { final Collection<WebServiceFeature> features = new LinkedList<WebServiceFeature>(); if ((key != null) && (policyMap != null)) { Policy policy = policyMap.getEndpointEffectivePolicy(key); if (null!=policy && policy.contains(OPTIMIZED_MIME_SERIALIZATION_ASSERTION)) { Iterator <AssertionSet> assertions = policy.iterator(); while(assertions.hasNext()){ AssertionSet assertionSet = assertions.next(); Iterator<PolicyAssertion> policyAssertion = assertionSet.iterator(); while(policyAssertion.hasNext()){ PolicyAssertion assertion = policyAssertion.next(); if(OPTIMIZED_MIME_SERIALIZATION_ASSERTION.equals(assertion.getName())){ features.add(new MTOMFeature(true)); } // end-if non optional mtom assertion found } // next assertion } // next alternative } // end-if policy contains mtom assertion } return features; }
Example #15
Source File: SelectOptimalEncodingFeatureConfigurator.java From openjdk-8 with GNU General Public License v2.0 | 6 votes |
/** * Process SelectOptimalEncoding policy assertions. * * @param key Key that identifies the endpoint scope. * @param policyMap The policy map. * @throws PolicyException If retrieving the policy triggered an exception. */ public Collection<WebServiceFeature> getFeatures(PolicyMapKey key, PolicyMap policyMap) throws PolicyException { final Collection<WebServiceFeature> features = new LinkedList<WebServiceFeature>(); if ((key != null) && (policyMap != null)) { Policy policy = policyMap.getEndpointEffectivePolicy(key); if (null!=policy && policy.contains(SELECT_OPTIMAL_ENCODING_ASSERTION)) { Iterator <AssertionSet> assertions = policy.iterator(); while(assertions.hasNext()){ AssertionSet assertionSet = assertions.next(); Iterator<PolicyAssertion> policyAssertion = assertionSet.iterator(); while(policyAssertion.hasNext()){ PolicyAssertion assertion = policyAssertion.next(); if(SELECT_OPTIMAL_ENCODING_ASSERTION.equals(assertion.getName())){ String value = assertion.getAttributeValue(enabled); boolean isSelectOptimalEncodingEnabled = value == null || Boolean.valueOf(value.trim()); features.add(new SelectOptimalEncodingFeature(isSelectOptimalEncodingEnabled)); } } } } } return features; }
Example #16
Source File: FastInfosetFeatureConfigurator.java From hottub with GNU General Public License v2.0 | 6 votes |
/** * Process FastInfoset policy assertions. * * @param key Key to identify the endpoint scope. * @param policyMap the policy map. * @throws PolicyException If retrieving the policy triggered an exception. */ public Collection<WebServiceFeature> getFeatures(final PolicyMapKey key, final PolicyMap policyMap) throws PolicyException { final Collection<WebServiceFeature> features = new LinkedList<WebServiceFeature>(); if ((key != null) && (policyMap != null)) { Policy policy = policyMap.getEndpointEffectivePolicy(key); if (null!=policy && policy.contains(OPTIMIZED_FI_SERIALIZATION_ASSERTION)) { Iterator <AssertionSet> assertions = policy.iterator(); while(assertions.hasNext()){ AssertionSet assertionSet = assertions.next(); Iterator<PolicyAssertion> policyAssertion = assertionSet.iterator(); while(policyAssertion.hasNext()){ PolicyAssertion assertion = policyAssertion.next(); if(OPTIMIZED_FI_SERIALIZATION_ASSERTION.equals(assertion.getName())){ String value = assertion.getAttributeValue(enabled); boolean isFastInfosetEnabled = Boolean.valueOf(value.trim()); features.add(new FastInfosetFeature(isFastInfosetEnabled)); } // end-if non optional fast infoset assertion found } // next assertion } // next alternative } // end-if policy contains fast infoset assertion } return features; }
Example #17
Source File: PolicyUtil.java From hottub with GNU General Public License v2.0 | 6 votes |
/** * Returns the list of features that correspond to the policies in the policy * map for a give port * * @param policyMap The service policies * @param serviceName The service name * @param portName The service port name * @return List of features for the given port corresponding to the policies in the map */ public static Collection<WebServiceFeature> getPortScopedFeatures(PolicyMap policyMap, QName serviceName, QName portName) { LOGGER.entering(policyMap, serviceName, portName); Collection<WebServiceFeature> features = new ArrayList<WebServiceFeature>(); try { final PolicyMapKey key = PolicyMap.createWsdlEndpointScopeKey(serviceName, portName); for (PolicyFeatureConfigurator configurator : CONFIGURATORS) { Collection<WebServiceFeature> additionalFeatures = configurator.getFeatures(key, policyMap); if (additionalFeatures != null) { features.addAll(additionalFeatures); } } } catch (PolicyException e) { throw new WebServiceException(e); } LOGGER.exiting(features); return features; }
Example #18
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 #19
Source File: ManagementAssertion.java From hottub with GNU General Public License v2.0 | 6 votes |
/** * Return ManagementAssertion if one can be found in the policy map under * the given service and port name. * * @param <T> The implementation class of the assertion. * @param name The fully qualified name of the server or client assertion. * @param policyMap The policy map. May be null. * @param serviceName The WSDL service name. May not be null. * @param portName The WSDL port name. May not be null. * @param type The implementation class of the assertion. * @return An instance of ManagementAssertion or null. * @throws WebServiceException If computing the effective policy of the endpoint scope failed. */ protected static <T extends ManagementAssertion> T getAssertion(final QName name, final PolicyMap policyMap, QName serviceName, QName portName, Class<T> type) throws WebServiceException { try { PolicyAssertion assertion = null; if (policyMap != null) { final PolicyMapKey key = PolicyMap.createWsdlEndpointScopeKey(serviceName, portName); final Policy policy = policyMap.getEndpointEffectivePolicy(key); if (policy != null) { final Iterator<AssertionSet> assertionSets = policy.iterator(); if (assertionSets.hasNext()) { final AssertionSet assertionSet = assertionSets.next(); final Iterator<PolicyAssertion> assertions = assertionSet.get(name).iterator(); if (assertions.hasNext()) { assertion = assertions.next(); } } } } return assertion == null ? null : assertion.getImplementation(type); } catch (PolicyException ex) { throw LOGGER.logSevereException(new WebServiceException( ManagementMessages.WSM_1001_FAILED_ASSERTION(name), ex)); } }
Example #20
Source File: SelectOptimalEncodingFeatureConfigurator.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
/** * Process SelectOptimalEncoding policy assertions. * * @param key Key that identifies the endpoint scope. * @param policyMap The policy map. * @throws PolicyException If retrieving the policy triggered an exception. */ public Collection<WebServiceFeature> getFeatures(PolicyMapKey key, PolicyMap policyMap) throws PolicyException { final Collection<WebServiceFeature> features = new LinkedList<WebServiceFeature>(); if ((key != null) && (policyMap != null)) { Policy policy = policyMap.getEndpointEffectivePolicy(key); if (null!=policy && policy.contains(SELECT_OPTIMAL_ENCODING_ASSERTION)) { Iterator <AssertionSet> assertions = policy.iterator(); while(assertions.hasNext()){ AssertionSet assertionSet = assertions.next(); Iterator<PolicyAssertion> policyAssertion = assertionSet.iterator(); while(policyAssertion.hasNext()){ PolicyAssertion assertion = policyAssertion.next(); if(SELECT_OPTIMAL_ENCODING_ASSERTION.equals(assertion.getName())){ String value = assertion.getAttributeValue(enabled); boolean isSelectOptimalEncodingEnabled = value == null || Boolean.valueOf(value.trim()); features.add(new SelectOptimalEncodingFeature(isSelectOptimalEncodingEnabled)); } } } } } return features; }
Example #21
Source File: MtomFeatureConfigurator.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
/** * process Mtom policy assertions and if found and is not optional then mtom is enabled on the * {@link WSDLBoundPortType} * * @param key Key that identifies the endpoint scope * @param policyMap Must be non-null * @throws PolicyException If retrieving the policy triggered an exception */ public Collection<WebServiceFeature> getFeatures(PolicyMapKey key, PolicyMap policyMap) throws PolicyException { final Collection<WebServiceFeature> features = new LinkedList<WebServiceFeature>(); if ((key != null) && (policyMap != null)) { Policy policy = policyMap.getEndpointEffectivePolicy(key); if (null!=policy && policy.contains(OPTIMIZED_MIME_SERIALIZATION_ASSERTION)) { Iterator <AssertionSet> assertions = policy.iterator(); while(assertions.hasNext()){ AssertionSet assertionSet = assertions.next(); Iterator<PolicyAssertion> policyAssertion = assertionSet.iterator(); while(policyAssertion.hasNext()){ PolicyAssertion assertion = policyAssertion.next(); if(OPTIMIZED_MIME_SERIALIZATION_ASSERTION.equals(assertion.getName())){ features.add(new MTOMFeature(true)); } // end-if non optional mtom assertion found } // next assertion } // next alternative } // end-if policy contains mtom assertion } return features; }
Example #22
Source File: FastInfosetFeatureConfigurator.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
/** * Process FastInfoset policy assertions. * * @param key Key to identify the endpoint scope. * @param policyMap the policy map. * @throws PolicyException If retrieving the policy triggered an exception. */ public Collection<WebServiceFeature> getFeatures(final PolicyMapKey key, final PolicyMap policyMap) throws PolicyException { final Collection<WebServiceFeature> features = new LinkedList<WebServiceFeature>(); if ((key != null) && (policyMap != null)) { Policy policy = policyMap.getEndpointEffectivePolicy(key); if (null!=policy && policy.contains(OPTIMIZED_FI_SERIALIZATION_ASSERTION)) { Iterator <AssertionSet> assertions = policy.iterator(); while(assertions.hasNext()){ AssertionSet assertionSet = assertions.next(); Iterator<PolicyAssertion> policyAssertion = assertionSet.iterator(); while(policyAssertion.hasNext()){ PolicyAssertion assertion = policyAssertion.next(); if(OPTIMIZED_FI_SERIALIZATION_ASSERTION.equals(assertion.getName())){ String value = assertion.getAttributeValue(enabled); boolean isFastInfosetEnabled = Boolean.valueOf(value.trim()); features.add(new FastInfosetFeature(isFastInfosetEnabled)); } // end-if non optional fast infoset assertion found } // next assertion } // next alternative } // end-if policy contains fast infoset assertion } return features; }
Example #23
Source File: PolicyUtil.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
/** * Returns the list of features that correspond to the policies in the policy * map for a give port * * @param policyMap The service policies * @param serviceName The service name * @param portName The service port name * @return List of features for the given port corresponding to the policies in the map */ public static Collection<WebServiceFeature> getPortScopedFeatures(PolicyMap policyMap, QName serviceName, QName portName) { LOGGER.entering(policyMap, serviceName, portName); Collection<WebServiceFeature> features = new ArrayList<WebServiceFeature>(); try { final PolicyMapKey key = PolicyMap.createWsdlEndpointScopeKey(serviceName, portName); for (PolicyFeatureConfigurator configurator : CONFIGURATORS) { Collection<WebServiceFeature> additionalFeatures = configurator.getFeatures(key, policyMap); if (additionalFeatures != null) { features.addAll(additionalFeatures); } } } catch (PolicyException e) { throw new WebServiceException(e); } LOGGER.exiting(features); return features; }
Example #24
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 #25
Source File: ManagementAssertion.java From TencentKona-8 with GNU General Public License v2.0 | 6 votes |
/** * Return ManagementAssertion if one can be found in the policy map under * the given service and port name. * * @param <T> The implementation class of the assertion. * @param name The fully qualified name of the server or client assertion. * @param policyMap The policy map. May be null. * @param serviceName The WSDL service name. May not be null. * @param portName The WSDL port name. May not be null. * @param type The implementation class of the assertion. * @return An instance of ManagementAssertion or null. * @throws WebServiceException If computing the effective policy of the endpoint scope failed. */ protected static <T extends ManagementAssertion> T getAssertion(final QName name, final PolicyMap policyMap, QName serviceName, QName portName, Class<T> type) throws WebServiceException { try { PolicyAssertion assertion = null; if (policyMap != null) { final PolicyMapKey key = PolicyMap.createWsdlEndpointScopeKey(serviceName, portName); final Policy policy = policyMap.getEndpointEffectivePolicy(key); if (policy != null) { final Iterator<AssertionSet> assertionSets = policy.iterator(); if (assertionSets.hasNext()) { final AssertionSet assertionSet = assertionSets.next(); final Iterator<PolicyAssertion> assertions = assertionSet.get(name).iterator(); if (assertions.hasNext()) { assertion = assertions.next(); } } } } return assertion == null ? null : assertion.getImplementation(type); } catch (PolicyException ex) { throw LOGGER.logSevereException(new WebServiceException( ManagementMessages.WSM_1001_FAILED_ASSERTION(name), ex)); } }
Example #26
Source File: SelectOptimalEncodingFeatureConfigurator.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
/** * Process SelectOptimalEncoding policy assertions. * * @param key Key that identifies the endpoint scope. * @param policyMap The policy map. * @throws PolicyException If retrieving the policy triggered an exception. */ public Collection<WebServiceFeature> getFeatures(PolicyMapKey key, PolicyMap policyMap) throws PolicyException { final Collection<WebServiceFeature> features = new LinkedList<WebServiceFeature>(); if ((key != null) && (policyMap != null)) { Policy policy = policyMap.getEndpointEffectivePolicy(key); if (null!=policy && policy.contains(SELECT_OPTIMAL_ENCODING_ASSERTION)) { Iterator <AssertionSet> assertions = policy.iterator(); while(assertions.hasNext()){ AssertionSet assertionSet = assertions.next(); Iterator<PolicyAssertion> policyAssertion = assertionSet.iterator(); while(policyAssertion.hasNext()){ PolicyAssertion assertion = policyAssertion.next(); if(SELECT_OPTIMAL_ENCODING_ASSERTION.equals(assertion.getName())){ String value = assertion.getAttributeValue(enabled); boolean isSelectOptimalEncodingEnabled = value == null || Boolean.valueOf(value.trim()); features.add(new SelectOptimalEncodingFeature(isSelectOptimalEncodingEnabled)); } } } } } return features; }
Example #27
Source File: MtomFeatureConfigurator.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
/** * process Mtom policy assertions and if found and is not optional then mtom is enabled on the * {@link WSDLBoundPortType} * * @param key Key that identifies the endpoint scope * @param policyMap Must be non-null * @throws PolicyException If retrieving the policy triggered an exception */ public Collection<WebServiceFeature> getFeatures(PolicyMapKey key, PolicyMap policyMap) throws PolicyException { final Collection<WebServiceFeature> features = new LinkedList<WebServiceFeature>(); if ((key != null) && (policyMap != null)) { Policy policy = policyMap.getEndpointEffectivePolicy(key); if (null!=policy && policy.contains(OPTIMIZED_MIME_SERIALIZATION_ASSERTION)) { Iterator <AssertionSet> assertions = policy.iterator(); while(assertions.hasNext()){ AssertionSet assertionSet = assertions.next(); Iterator<PolicyAssertion> policyAssertion = assertionSet.iterator(); while(policyAssertion.hasNext()){ PolicyAssertion assertion = policyAssertion.next(); if(OPTIMIZED_MIME_SERIALIZATION_ASSERTION.equals(assertion.getName())){ features.add(new MTOMFeature(true)); } // end-if non optional mtom assertion found } // next assertion } // next alternative } // end-if policy contains mtom assertion } return features; }
Example #28
Source File: FastInfosetFeatureConfigurator.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
/** * Process FastInfoset policy assertions. * * @param key Key to identify the endpoint scope. * @param policyMap the policy map. * @throws PolicyException If retrieving the policy triggered an exception. */ public Collection<WebServiceFeature> getFeatures(final PolicyMapKey key, final PolicyMap policyMap) throws PolicyException { final Collection<WebServiceFeature> features = new LinkedList<WebServiceFeature>(); if ((key != null) && (policyMap != null)) { Policy policy = policyMap.getEndpointEffectivePolicy(key); if (null!=policy && policy.contains(OPTIMIZED_FI_SERIALIZATION_ASSERTION)) { Iterator <AssertionSet> assertions = policy.iterator(); while(assertions.hasNext()){ AssertionSet assertionSet = assertions.next(); Iterator<PolicyAssertion> policyAssertion = assertionSet.iterator(); while(policyAssertion.hasNext()){ PolicyAssertion assertion = policyAssertion.next(); if(OPTIMIZED_FI_SERIALIZATION_ASSERTION.equals(assertion.getName())){ String value = assertion.getAttributeValue(enabled); boolean isFastInfosetEnabled = Boolean.valueOf(value.trim()); features.add(new FastInfosetFeature(isFastInfosetEnabled)); } // end-if non optional fast infoset assertion found } // next assertion } // next alternative } // end-if policy contains fast infoset assertion } return features; }
Example #29
Source File: PolicyUtil.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
/** * Returns the list of features that correspond to the policies in the policy * map for a give port * * @param policyMap The service policies * @param serviceName The service name * @param portName The service port name * @return List of features for the given port corresponding to the policies in the map */ public static Collection<WebServiceFeature> getPortScopedFeatures(PolicyMap policyMap, QName serviceName, QName portName) { LOGGER.entering(policyMap, serviceName, portName); Collection<WebServiceFeature> features = new ArrayList<WebServiceFeature>(); try { final PolicyMapKey key = PolicyMap.createWsdlEndpointScopeKey(serviceName, portName); for (PolicyFeatureConfigurator configurator : CONFIGURATORS) { Collection<WebServiceFeature> additionalFeatures = configurator.getFeatures(key, policyMap); if (additionalFeatures != null) { features.addAll(additionalFeatures); } } } catch (PolicyException e) { throw new WebServiceException(e); } LOGGER.exiting(features); return features; }
Example #30
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; }