Java Code Examples for com.sun.xml.internal.ws.policy.sourcemodel.AssertionData#createAssertionData()

The following examples show how to use com.sun.xml.internal.ws.policy.sourcemodel.AssertionData#createAssertionData() . 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: PolicyAssertion.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Creates generic assertionand stores the data specified in input parameters
 *
 * @param assertionData assertion creation data specifying the details of newly created assertion
 * @param assertionParameters collection of assertions parameters of this policy assertion. May be {@code null}.
 */
protected PolicyAssertion(final AssertionData assertionData, final Collection<? extends PolicyAssertion> assertionParameters) {
    if (assertionData == null) {
        this.data = AssertionData.createAssertionData(null);
    } else {
        this.data = assertionData;
    }
    this.parameters = AssertionSet.createAssertionSet(assertionParameters);
}
 
Example 2
Source File: PolicyAssertion.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Creates generic assertionand stores the data specified in input parameters
 *
 * @param assertionData assertion creation data specifying the details of newly created assertion
 * @param assertionParameters collection of assertions parameters of this policy assertion. May be {@code null}.
 */
protected PolicyAssertion(final AssertionData assertionData, final Collection<? extends PolicyAssertion> assertionParameters) {
    if (assertionData == null) {
        this.data = AssertionData.createAssertionData(null);
    } else {
        this.data = assertionData;
    }
    this.parameters = AssertionSet.createAssertionSet(assertionParameters);
}
 
Example 3
Source File: PolicyAssertion.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Creates generic assertionand stores the data specified in input parameters
 *
 * @param assertionData assertion creation data specifying the details of newly created assertion
 * @param assertionParameters collection of assertions parameters of this policy assertion. May be {@code null}.
 */
protected PolicyAssertion(final AssertionData assertionData, final Collection<? extends PolicyAssertion> assertionParameters) {
    if (assertionData == null) {
        this.data = AssertionData.createAssertionData(null);
    } else {
        this.data = assertionData;
    }
    this.parameters = AssertionSet.createAssertionSet(assertionParameters);
}
 
Example 4
Source File: PolicyAssertion.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Creates generic assertionand stores the data specified in input parameters
 *
 * @param assertionData assertion creation data specifying the details of newly created assertion
 * @param assertionParameters collection of assertions parameters of this policy assertion. May be {@code null}.
 */
protected PolicyAssertion(final AssertionData assertionData, final Collection<? extends PolicyAssertion> assertionParameters) {
    if (assertionData == null) {
        this.data = AssertionData.createAssertionData(null);
    } else {
        this.data = assertionData;
    }
    this.parameters = AssertionSet.createAssertionSet(assertionParameters);
}
 
Example 5
Source File: PolicyAssertion.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Creates generic assertionand stores the data specified in input parameters
 *
 * @param assertionData assertion creation data specifying the details of newly created assertion
 * @param assertionParameters collection of assertions parameters of this policy assertion. May be {@code null}.
 */
protected PolicyAssertion(final AssertionData assertionData, final Collection<? extends PolicyAssertion> assertionParameters) {
    if (assertionData == null) {
        this.data = AssertionData.createAssertionData(null);
    } else {
        this.data = assertionData;
    }
    this.parameters = AssertionSet.createAssertionSet(assertionParameters);
}
 
Example 6
Source File: PolicyAssertion.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Creates generic assertionand stores the data specified in input parameters
 *
 * @param assertionData assertion creation data specifying the details of newly created assertion
 * @param assertionParameters collection of assertions parameters of this policy assertion. May be {@code null}.
 */
protected PolicyAssertion(final AssertionData assertionData, final Collection<? extends PolicyAssertion> assertionParameters) {
    if (assertionData == null) {
        this.data = AssertionData.createAssertionData(null);
    } else {
        this.data = assertionData;
    }
    this.parameters = AssertionSet.createAssertionSet(assertionParameters);
}
 
Example 7
Source File: PolicyAssertion.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Creates generic assertionand stores the data specified in input parameters
 *
 * @param assertionData assertion creation data specifying the details of newly created assertion
 * @param assertionParameters collection of assertions parameters of this policy assertion. May be {@code null}.
 */
protected PolicyAssertion(final AssertionData assertionData, final Collection<? extends PolicyAssertion> assertionParameters) {
    if (assertionData == null) {
        this.data = AssertionData.createAssertionData(null);
    } else {
        this.data = assertionData;
    }
    this.parameters = AssertionSet.createAssertionSet(assertionParameters);
}
 
Example 8
Source File: PolicyAssertion.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Creates generic assertionand stores the data specified in input parameters
 *
 * @param assertionData assertion creation data specifying the details of newly created assertion
 * @param assertionParameters collection of assertions parameters of this policy assertion. May be {@code null}.
 */
protected PolicyAssertion(final AssertionData assertionData, final Collection<? extends PolicyAssertion> assertionParameters) {
    if (assertionData == null) {
        this.data = AssertionData.createAssertionData(null);
    } else {
        this.data = assertionData;
    }
    this.parameters = AssertionSet.createAssertionSet(assertionParameters);
}
 
Example 9
Source File: PolicyAssertion.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
protected PolicyAssertion() {
    this.data = AssertionData.createAssertionData(null);
    this.parameters =  AssertionSet.createAssertionSet(null);
}
 
Example 10
Source File: PolicyAssertion.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
protected PolicyAssertion() {
    this.data = AssertionData.createAssertionData(null);
    this.parameters =  AssertionSet.createAssertionSet(null);
}
 
Example 11
Source File: PolicyAssertion.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
protected PolicyAssertion() {
    this.data = AssertionData.createAssertionData(null);
    this.parameters =  AssertionSet.createAssertionSet(null);
}
 
Example 12
Source File: PolicyAssertion.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
protected PolicyAssertion() {
    this.data = AssertionData.createAssertionData(null);
    this.parameters =  AssertionSet.createAssertionSet(null);
}
 
Example 13
Source File: PolicyAssertion.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
protected PolicyAssertion() {
    this.data = AssertionData.createAssertionData(null);
    this.parameters =  AssertionSet.createAssertionSet(null);
}
 
Example 14
Source File: PolicyAssertion.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
protected PolicyAssertion() {
    this.data = AssertionData.createAssertionData(null);
    this.parameters =  AssertionSet.createAssertionSet(null);
}
 
Example 15
Source File: PolicyAssertion.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
protected PolicyAssertion() {
    this.data = AssertionData.createAssertionData(null);
    this.parameters =  AssertionSet.createAssertionSet(null);
}
 
Example 16
Source File: PolicyAssertion.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
protected PolicyAssertion() {
    this.data = AssertionData.createAssertionData(null);
    this.parameters =  AssertionSet.createAssertionSet(null);
}