| org.apache.cxf.ws.policy.AssertionBuilderRegistry
AssertionBuilderRegistry | public interface AssertionBuilderRegistry extends Registry<QName, AssertionBuilder>(Code) | | AssertionBuilderRegistry is used to manage AssertionBuilders and
create Assertion objects from given xml elements.
|
Method Summary | |
Assertion | build(Element element) Returns an assertion that is built using the specified xml element.
Parameters: element - the element from which to build an Assertion. | boolean | isIgnoreUnknownAssertions() Indicates if unknown assertions should simply be ignored. | void | setIgnoreUnknownAssertions(boolean ignoreUnknownAssertions) Indicates if unknown assertions should simply be ignored.
If set to false, the policy engine will throw an exception upon
encountering an assertion type for which no AssertionBuilder
has been registered. |
build | Assertion build(Element element)(Code) | | Returns an assertion that is built using the specified xml element.
Parameters: element - the element from which to build an Assertion. an Assertion that is built using the specified element. |
isIgnoreUnknownAssertions | boolean isIgnoreUnknownAssertions()(Code) | | Indicates if unknown assertions should simply be ignored.
If set to false, the policy engine will throw an exception upon
encountering an assertion type for which no AssertionBuilder
has been registered.
|
setIgnoreUnknownAssertions | void setIgnoreUnknownAssertions(boolean ignoreUnknownAssertions)(Code) | | Indicates if unknown assertions should simply be ignored.
If set to false, the policy engine will throw an exception upon
encountering an assertion type for which no AssertionBuilder
has been registered.
Parameters: ignoreUnknownAssertions - iff unknown assertions should be ignored |
|
|