Java Code Examples for com.sun.xml.internal.ws.policy.PolicyAssertion#getAttributeValue()
The following examples show how to use
com.sun.xml.internal.ws.policy.PolicyAssertion#getAttributeValue() .
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: FastInfosetFeatureConfigurator.java From TencentKona-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 2
Source File: SelectOptimalEncodingFeatureConfigurator.java From TencentKona-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 3
Source File: FastInfosetFeatureConfigurator.java From jdk8u60 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 4
Source File: SelectOptimalEncodingFeatureConfigurator.java From jdk8u60 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 5
Source File: FastInfosetFeatureConfigurator.java From openjdk-jdk8u 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 6
Source File: SelectOptimalEncodingFeatureConfigurator.java From openjdk-jdk8u 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: 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 8
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 9
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 10
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 11
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 12
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 13
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 14
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 15
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 16
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; }