当前位置: 首页>>代码示例>>Java>>正文


Java AssertionData类代码示例

本文整理汇总了Java中com.sun.xml.internal.ws.policy.sourcemodel.AssertionData的典型用法代码示例。如果您正苦于以下问题:Java AssertionData类的具体用法?Java AssertionData怎么用?Java AssertionData使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


AssertionData类属于com.sun.xml.internal.ws.policy.sourcemodel包,在下文中一共展示了AssertionData类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: ManagementAssertion

import com.sun.xml.internal.ws.policy.sourcemodel.AssertionData; //导入依赖的package包/类
/**
 * Create a new ManagementAssertion instance.
 *
 * @param name The fully qualified name of the server or client assertion. Must
 *   not be null.
 * @param data The assertion data. Must not be null.
 * @param assertionParameters Parameters of the assertion. May be null.
 * @throws AssertionCreationException Thrown if the creation of the assertion failed.
 */
protected ManagementAssertion(final QName name, AssertionData data, Collection<PolicyAssertion> assertionParameters)
        throws AssertionCreationException {
    super(data, assertionParameters);
    if (!name.equals(data.getName())) {
        throw LOGGER.logSevereException(new AssertionCreationException(data,
                ManagementMessages.WSM_1002_EXPECTED_MANAGEMENT_ASSERTION(name)));
    }
    if (isManagementEnabled() && !data.containsAttribute(ID_ATTRIBUTE_QNAME)) {
        throw LOGGER.logSevereException(new AssertionCreationException(data,
                ManagementMessages.WSM_1003_MANAGEMENT_ASSERTION_MISSING_ID(name)));
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:22,代码来源:ManagementAssertion.java

示例2: PolicyAssertion

import com.sun.xml.internal.ws.policy.sourcemodel.AssertionData; //导入依赖的package包/类
/**
 * 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);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:15,代码来源:PolicyAssertion.java

示例3: createAssertion

import com.sun.xml.internal.ws.policy.sourcemodel.AssertionData; //导入依赖的package包/类
public PolicyAssertion createAssertion(AssertionData data, Collection<PolicyAssertion> assertionParameters,
        AssertionSet nestedAlternative, PolicyAssertionCreator defaultCreator) throws AssertionCreationException {
    final QName name = data.getName();
    if (ManagedServiceAssertion.MANAGED_SERVICE_QNAME.equals(name)) {
        return new ManagedServiceAssertion(data, assertionParameters);
    }
    else if (ManagedClientAssertion.MANAGED_CLIENT_QNAME.equals(name)) {
        return new ManagedClientAssertion(data, assertionParameters);
    }
    else {
        return defaultCreator.createAssertion(data, assertionParameters, nestedAlternative, null);
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:14,代码来源:ManagementAssertionCreator.java

示例4: ManagedClientAssertion

import com.sun.xml.internal.ws.policy.sourcemodel.AssertionData; //导入依赖的package包/类
public ManagedClientAssertion(AssertionData data, Collection<PolicyAssertion> assertionParameters)
        throws AssertionCreationException {
    super(MANAGED_CLIENT_QNAME, data, assertionParameters);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:ManagedClientAssertion.java

示例5: ManagedServiceAssertion

import com.sun.xml.internal.ws.policy.sourcemodel.AssertionData; //导入依赖的package包/类
public ManagedServiceAssertion(AssertionData data, Collection<PolicyAssertion> assertionParameters)
        throws AssertionCreationException {
    super(MANAGED_SERVICE_QNAME, data, assertionParameters);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:ManagedServiceAssertion.java

示例6: ComplexAssertion

import com.sun.xml.internal.ws.policy.sourcemodel.AssertionData; //导入依赖的package包/类
protected ComplexAssertion(final AssertionData data, final Collection<? extends PolicyAssertion> assertionParameters, final AssertionSet nestedAlternative) {
    super(data, assertionParameters);

    AssertionSet nestedSet = (nestedAlternative != null) ? nestedAlternative : AssertionSet.emptyAssertionSet();
    this.nestedPolicy = NestedPolicy.createNestedPolicy(nestedSet);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:7,代码来源:ComplexAssertion.java

示例7: SimpleAssertion

import com.sun.xml.internal.ws.policy.sourcemodel.AssertionData; //导入依赖的package包/类
protected SimpleAssertion(AssertionData data, Collection<? extends PolicyAssertion> assertionParameters) {
    super(data, assertionParameters);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:4,代码来源:SimpleAssertion.java


注:本文中的com.sun.xml.internal.ws.policy.sourcemodel.AssertionData类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。