Uses of Class
com.sun.xml.ws.policy.PolicyAssertion
-
Packages that use PolicyAssertion Package Description com.sun.xml.ws.policy The root package of public policy API.com.sun.xml.ws.policy.sourcemodel The part of public policy API that defines the classes and interfaces dealing with the policy tree structure (policy source model) creation and manipulation.com.sun.xml.ws.policy.spi The package contains policy API extension point definitions. -
-
Uses of PolicyAssertion in com.sun.xml.ws.policy
Subclasses of PolicyAssertion in com.sun.xml.ws.policy Modifier and Type Class Description classComplexAssertionComplex assertion is an abstract class that serves as a base class for any assertion that MAY contain nested policies.classSimpleAssertionSimple assertion is an abstract class that serves as a base class for any assertion that MAY NOT contain nested policies.Methods in com.sun.xml.ws.policy with type parameters of type PolicyAssertion Modifier and Type Method Description <T extends PolicyAssertion>
TPolicyAssertion. getImplementation(Class<T> type)Casts the assertion to the implementation type.Methods in com.sun.xml.ws.policy that return types with arguments of type PolicyAssertion Modifier and Type Method Description Collection<PolicyAssertion>AssertionSet. get(QName name)Searches for assertions with given name.Iterator<PolicyAssertion>PolicyAssertion. getNestedAssertionsIterator()Deprecated.Use getNestedParametersIterator() insteadIterator<PolicyAssertion>PolicyAssertion. getParametersIterator()Returns the assertion's parameter collection iterator.Iterator<PolicyAssertion>AssertionSet. iterator()Returns an iterator over a set of child policy assertion objects.Methods in com.sun.xml.ws.policy with parameters of type PolicyAssertion Modifier and Type Method Description PolicyAssertionValidator.FitnessAssertionValidationProcessor. validateClientSide(PolicyAssertion assertion)Validates fitness of theassertionon the client side.PolicyAssertionValidator.FitnessAssertionValidationProcessor. validateServerSide(PolicyAssertion assertion)Validates fitness of theassertionon the server side.Method parameters in com.sun.xml.ws.policy with type arguments of type PolicyAssertion Modifier and Type Method Description static AssertionSetAssertionSet. createAssertionSet(Collection<? extends PolicyAssertion> assertions)Creates and returns new assertion set holding a set of provided policy assertions.Constructor parameters in com.sun.xml.ws.policy with type arguments of type PolicyAssertion Constructor Description ComplexAssertion(AssertionData data, Collection<? extends PolicyAssertion> assertionParameters, AssertionSet nestedAlternative)PolicyAssertion(AssertionData assertionData, Collection<? extends PolicyAssertion> assertionParameters)Creates generic assertionand stores the data specified in input parametersPolicyAssertion(AssertionData assertionData, Collection<? extends PolicyAssertion> assertionParameters, AssertionSet nestedAlternative)Deprecated.Non-abstract assertion types should derive fromSimpleAssertionorComplexAssertioninstead.SimpleAssertion(AssertionData data, Collection<? extends PolicyAssertion> assertionParameters) -
Uses of PolicyAssertion in com.sun.xml.ws.policy.sourcemodel
Method parameters in com.sun.xml.ws.policy.sourcemodel with type arguments of type PolicyAssertion Modifier and Type Method Description protected voidPolicyModelGenerator. translate(ModelNode assertionNode, Iterator<PolicyAssertion> assertionParametersIterator)Iterates through all contained assertions and adds them to the info model. -
Uses of PolicyAssertion in com.sun.xml.ws.policy.spi
Methods in com.sun.xml.ws.policy.spi that return PolicyAssertion Modifier and Type Method Description PolicyAssertionPolicyAssertionCreator. createAssertion(AssertionData data, Collection<PolicyAssertion> assertionParameters, AssertionSet nestedAlternative, PolicyAssertionCreator defaultCreator)Creates domain-specific policy assertion instance according to assertion data provided.Methods in com.sun.xml.ws.policy.spi with parameters of type PolicyAssertion Modifier and Type Method Description PolicyAssertionValidator.FitnessAbstractQNameValidator. validateClientSide(PolicyAssertion assertion)PolicyAssertionValidator.FitnessPolicyAssertionValidator. validateClientSide(PolicyAssertion assertion)An implementation of this method must return:Fitness.UNKNOWNif the policy assertion type is not recognizedFitness.SUPPORTEDif the policy assertion is supported in the client-side contextFitness.UNSUPPORTEDif the policy assertion is recognized however it's content is not supported.PolicyAssertionValidator.FitnessAbstractQNameValidator. validateServerSide(PolicyAssertion assertion)PolicyAssertionValidator.FitnessPolicyAssertionValidator. validateServerSide(PolicyAssertion assertion)An implementation of this method must return:Fitness.UNKNOWNif the policy assertion type is not recognizedFitness.SUPPORTEDif the policy assertion is supported in the server-side contextFitness.UNSUPPORTEDif the policy assertion is recognized however it's content is not supported.Method parameters in com.sun.xml.ws.policy.spi with type arguments of type PolicyAssertion Modifier and Type Method Description PolicyAssertionPolicyAssertionCreator. createAssertion(AssertionData data, Collection<PolicyAssertion> assertionParameters, AssertionSet nestedAlternative, PolicyAssertionCreator defaultCreator)Creates domain-specific policy assertion instance according to assertion data provided.
-