Searched refs:assertionData (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/spi/
H A DAssertionCreationException.java38 private final AssertionData assertionData; field in class:AssertionCreationException
46 * @param assertionData the data provided for assertion creation
49 public AssertionCreationException(final AssertionData assertionData, final String message) { argument
51 this.assertionData = assertionData;
60 * @param assertionData the data provided for assertion creation
64 public AssertionCreationException(final AssertionData assertionData, final String message, final Throwable cause) { argument
66 this.assertionData = assertionData;
72 * @param assertionData th
75 AssertionCreationException(AssertionData assertionData, Throwable cause) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/
H A DPolicyAssertion.java62 * @param assertionData assertion creation data specifying the details of newly created assertion. May be {@code null}.
72 protected PolicyAssertion(final AssertionData assertionData, final Collection<? extends PolicyAssertion> assertionParameters, final AssertionSet nestedAlternative) { argument
73 this.data = assertionData;
84 * @param assertionData assertion creation data specifying the details of newly created assertion
87 protected PolicyAssertion(final AssertionData assertionData, final Collection<? extends PolicyAssertion> assertionParameters) { argument
88 if (assertionData == null) {
91 this.data = assertionData;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/policy/
H A DAddressingPolicyMapConfigurator.java63 * @param assertionData
66 AddressingAssertion(AssertionData assertionData, final AssertionSet nestedAlternative) { argument
67 super(assertionData, null, nestedAlternative);
73 * @param assertionData
75 AddressingAssertion(AssertionData assertionData) { argument
76 super(assertionData, null, null);

Completed in 39 milliseconds