org.opensaml.saml.saml1.core.Assertion.setVersion()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(2.6k)|赞(0)|评价(0)|浏览(86)

本文整理了Java中org.opensaml.saml.saml1.core.Assertion.setVersion()方法的一些代码示例,展示了Assertion.setVersion()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Assertion.setVersion()方法的具体详情如下:
包路径:org.opensaml.saml.saml1.core.Assertion
类名称:Assertion
方法名:setVersion

Assertion.setVersion介绍

[英]Set the SAML version of this assertion.
[中]

代码示例

代码示例来源:origin: org.opensaml/opensaml-saml-impl

assertion.setVersion(SAMLVersion.VERSION_10);
} else if (minor == 1) {
  assertion.setVersion(SAMLVersion.VERSION_11);

代码示例来源:origin: org.opensaml/opensaml-saml-api

/**
 * Constructs an {@link Assertion} using the parameters supplied, with its issue instant set to the
 * current time.
 * 
 * @param action the current action
 * @param idGenerator source of assertion ID
 * @param issuer value for assertion
 * 
 * @return the assertion
 */
@Nonnull public static Assertion buildAssertion(@Nonnull final AbstractProfileAction action,
    @Nonnull final IdentifierGenerationStrategy idGenerator, @Nonnull @NotEmpty final String issuer) {
  
  final SAMLObjectBuilder<Assertion> assertionBuilder = (SAMLObjectBuilder<Assertion>)
      XMLObjectProviderRegistrySupport.getBuilderFactory().<Assertion>getBuilderOrThrow(
          Assertion.DEFAULT_ELEMENT_NAME);
  final Assertion assertion = assertionBuilder.buildObject();
  assertion.setID(idGenerator.generateIdentifier());
  assertion.setIssueInstant(new DateTime());
  assertion.setIssuer(issuer);
  assertion.setVersion(SAMLVersion.VERSION_11);
  
  getLogger().debug("Profile Action {}: Created Assertion {}", action.getClass().getSimpleName(),
      assertion.getID());
  return assertion;
}

代码示例来源:origin: org.apache.wss4j/wss4j-ws-security-common

/**
 * Create a new SAML 1.1 assertion
 *
 * @param issuer of type String
 * @return A SAML 1.1 assertion
 */
@SuppressWarnings("unchecked")
public static Assertion createSamlv1Assertion(String issuer) {
  if (assertionV1Builder == null) {
    assertionV1Builder = (SAMLObjectBuilder<Assertion>)
      builderFactory.getBuilder(Assertion.DEFAULT_ELEMENT_NAME);
    if (assertionV1Builder == null) {
      throw new IllegalStateException(
        "OpenSaml engine not initialized. Please make sure to initialize the OpenSaml "
        + "engine prior using it"
      );
    }
  }
  Assertion assertion =
    assertionV1Builder.buildObject(
      Assertion.DEFAULT_ELEMENT_NAME,
      Assertion.TYPE_NAME
    );
  assertion.setVersion(SAMLVersion.VERSION_11);
  assertion.setIssuer(issuer);
  assertion.setIssueInstant(new DateTime()); // now
  assertion.setID(IDGenerator.generateID("_"));
  return assertion;
}

代码示例来源:origin: net.shibboleth.idp/idp-cas-impl

assertion.setID(identifierGenerationStrategy.generateIdentifier());
assertion.setIssueInstant(now);
assertion.setVersion(SAMLVersion.VERSION_11);
assertion.setIssuer(entityID);

相关文章