Searched defs:saml2Config (Results 1 - 25 of 26) sorted by relevance

12

/forgerock/openam-v13/openam-sts/openam-token-service-sts/src/main/java/org/forgerock/openam/sts/tokengeneration/saml2/
H A DStatementProvider.java35 * @param saml2Config The SAML2Config corresponding to the STS instance consuming the TokenGenerationService
40 ConditionsProvider getConditionsProvider(SAML2Config saml2Config) throws TokenCreationException; argument
44 * @param saml2Config The SAML2Config corresponding to the STS instance consuming the TokenGenerationService
49 SubjectProvider getSubjectProvider(SAML2Config saml2Config) throws TokenCreationException; argument
53 * @param saml2Config The SAML2Config corresponding to the STS instance consuming the TokenGenerationService
58 AuthenticationStatementsProvider getAuthenticationStatementsProvider(SAML2Config saml2Config) throws TokenCreationException; argument
62 * @param saml2Config The SAML2Config corresponding to the STS instance consuming the TokenGenerationService
67 AttributeStatementsProvider getAttributeStatementsProvider(SAML2Config saml2Config) throws TokenCreationException; argument
71 * @param saml2Config The SAML2Config corresponding to the STS instance consuming the TokenGenerationService
76 AuthzDecisionStatementsProvider getAuthzDecisionStatementsProvider(SAML2Config saml2Config) throw argument
85 getAttributeMapper(SAML2Config saml2Config) argument
[all...]
H A DStatementProviderImpl.java49 public ConditionsProvider getConditionsProvider(SAML2Config saml2Config) throws TokenCreationException { argument
50 String customProvider = saml2Config.getCustomConditionsProviderClassName();
57 public SubjectProvider getSubjectProvider(SAML2Config saml2Config) throws TokenCreationException { argument
58 String customProvider = saml2Config.getCustomSubjectProviderClassName();
65 public AuthenticationStatementsProvider getAuthenticationStatementsProvider(SAML2Config saml2Config) throws TokenCreationException{ argument
66 String customProvider = saml2Config.getCustomAuthenticationStatementsProviderClassName();
73 public AttributeStatementsProvider getAttributeStatementsProvider(SAML2Config saml2Config) throws TokenCreationException { argument
74 String customProvider = saml2Config.getCustomAttributeStatementsProviderClassName();
81 public AuthzDecisionStatementsProvider getAuthzDecisionStatementsProvider(SAML2Config saml2Config) throws TokenCreationException { argument
82 String customProvider = saml2Config
89 getAttributeMapper(SAML2Config saml2Config) argument
[all...]
H A DSAML2TokenGenerationImpl.java80 final SAML2Config saml2Config = stsInstanceState.getConfig().getSaml2Config();
81 if (saml2Config == null) {
88 setIssuer(assertion, saml2Config);
93 setConditions(assertion, saml2Config, issueInstant, tokenGenerationState.getSaml2SubjectConfirmation());
94 setSubject(assertion, subjectId, saml2Config.getSpAcsUrl(), saml2Config,
97 setAuthenticationStatements(assertion, saml2Config, tokenGenerationState.getAuthnContextClassRef());
98 setAttributeStatements(assertion, subjectToken, saml2Config);
99 setAuthzDecisionStatements(assertion, subjectToken, saml2Config);
105 if (saml2Config
172 setConditions(Assertion assertion, SAML2Config saml2Config, Date issueInstant, SAML2SubjectConfirmation saml2SubjectConfirmation) argument
182 setSubject(Assertion assertion, String subjectId, String spAcsUrl, SAML2Config saml2Config, SAML2SubjectConfirmation subjectConfirmation, Date assertionIssueInstant, ProofTokenState proofTokenState) argument
194 setAuthenticationStatements(Assertion assertion, SAML2Config saml2Config, String authnContextClassRef) argument
204 setAttributeStatements(Assertion assertion, SSOToken token, SAML2Config saml2Config) argument
212 setAuthzDecisionStatements(Assertion assertion, SSOToken token, SAML2Config saml2Config) argument
221 handleSingingAndEncryptionOfEntireAssertion(Assertion assertion, SAML2Config saml2Config, STSInstanceState stsInstanceState) argument
243 encryptNameID(Assertion assertion, SAML2Config saml2Config, STSInstanceState stsInstanceState) argument
281 encryptAttributeStatement(Assertion assertion, SAML2Config saml2Config, STSInstanceState stsInstanceState) argument
[all...]
/forgerock/openam-v13/openam-sts/openam-token-service-sts/src/main/java/org/forgerock/openam/sts/tokengeneration/saml2/statements/
H A DAttributeStatementsProvider.java34 * @param saml2Config The STS-instance-specific SAML2 configurations
41 List<AttributeStatement> get(SSOToken ssoToken, SAML2Config saml2Config, AttributeMapper attributeMapper) throws TokenCreationException; argument
H A DAuthenticationStatementsProvider.java33 * @param saml2Config The STS-instance-specific SAML2 configurations
38 List<AuthnStatement> get(SAML2Config saml2Config, String authnContextClassRef) throws TokenCreationException; argument
H A DConditionsProvider.java34 * @param saml2Config STS-instance-specific SAML2 configurations
40 Conditions get(SAML2Config saml2Config, Date issueInstant, argument
H A DDefaultAttributeStatementsProvider.java42 public List<AttributeStatement> get(SSOToken ssoToken, SAML2Config saml2Config, AttributeMapper mapper) throws TokenCreationException { argument
45 List<Attribute> attributeList = mapper.getAttributes(ssoToken, saml2Config.getAttributeMap());
H A DDefaultAuthenticationStatementsProvider.java39 public List<AuthnStatement> get(SAML2Config saml2Config, String authNContextClassRef) throws TokenCreationException { argument
H A DDefaultConditionsProvider.java41 public Conditions get(SAML2Config saml2Config, Date issueInstant, argument
46 conditions.setNotOnOrAfter(new Date(issueInstant.getTime() + (saml2Config.getTokenLifetimeInSeconds() * 1000)));
52 String audience = saml2Config.getSpEntityId();
H A DSubjectProvider.java36 * @param saml2Config The STS-instance specific SAML2 configuration state
43 Subject get(String subjectId, String audienceId, SAML2Config saml2Config, argument
H A DDefaultSubjectProvider.java57 public Subject get(String subjectId, String spAcsUrl, SAML2Config saml2Config, argument
62 setNameIdentifier(subject, subjectId, saml2Config.getNameIdFormat());
81 (saml2Config.getTokenLifetimeInSeconds() * 1000)));
/forgerock/openam/openam-sts/openam-token-service-sts/src/main/java/org/forgerock/openam/sts/tokengeneration/saml2/
H A DStatementProvider.java35 * @param saml2Config The SAML2Config corresponding to the STS instance consuming the TokenGenerationService
40 ConditionsProvider getConditionsProvider(SAML2Config saml2Config) throws TokenCreationException; argument
44 * @param saml2Config The SAML2Config corresponding to the STS instance consuming the TokenGenerationService
49 SubjectProvider getSubjectProvider(SAML2Config saml2Config) throws TokenCreationException; argument
53 * @param saml2Config The SAML2Config corresponding to the STS instance consuming the TokenGenerationService
58 AuthenticationStatementsProvider getAuthenticationStatementsProvider(SAML2Config saml2Config) throws TokenCreationException; argument
62 * @param saml2Config The SAML2Config corresponding to the STS instance consuming the TokenGenerationService
67 AttributeStatementsProvider getAttributeStatementsProvider(SAML2Config saml2Config) throws TokenCreationException; argument
71 * @param saml2Config The SAML2Config corresponding to the STS instance consuming the TokenGenerationService
76 AuthzDecisionStatementsProvider getAuthzDecisionStatementsProvider(SAML2Config saml2Config) throw argument
85 getAttributeMapper(SAML2Config saml2Config) argument
[all...]
H A DStatementProviderImpl.java49 public ConditionsProvider getConditionsProvider(SAML2Config saml2Config) throws TokenCreationException { argument
50 String customProvider = saml2Config.getCustomConditionsProviderClassName();
57 public SubjectProvider getSubjectProvider(SAML2Config saml2Config) throws TokenCreationException { argument
58 String customProvider = saml2Config.getCustomSubjectProviderClassName();
65 public AuthenticationStatementsProvider getAuthenticationStatementsProvider(SAML2Config saml2Config) throws TokenCreationException{ argument
66 String customProvider = saml2Config.getCustomAuthenticationStatementsProviderClassName();
73 public AttributeStatementsProvider getAttributeStatementsProvider(SAML2Config saml2Config) throws TokenCreationException { argument
74 String customProvider = saml2Config.getCustomAttributeStatementsProviderClassName();
81 public AuthzDecisionStatementsProvider getAuthzDecisionStatementsProvider(SAML2Config saml2Config) throws TokenCreationException { argument
82 String customProvider = saml2Config
89 getAttributeMapper(SAML2Config saml2Config) argument
[all...]
/forgerock/openam/openam-sts/openam-token-service-sts/src/main/java/org/forgerock/openam/sts/tokengeneration/saml2/statements/
H A DAttributeStatementsProvider.java38 * @param saml2Config The STS-instance-specific SAML2 configurations
45 List<AttributeStatement> get(SSOToken ssoToken, SAML2Config saml2Config, AttributeMapper attributeMapper) throws TokenCreationException; argument
H A DAuthenticationStatementsProvider.java37 * @param saml2Config The STS-instance-specific SAML2 configurations
42 List<AuthnStatement> get(SAML2Config saml2Config, String authnContextClassRef) throws TokenCreationException; argument
H A DConditionsProvider.java36 * @param saml2Config STS-instance-specific SAML2 configurations
42 Conditions get(SAML2Config saml2Config, Date issueInstant, argument
H A DDefaultAttributeStatementsProvider.java42 public List<AttributeStatement> get(SSOToken ssoToken, SAML2Config saml2Config, AttributeMapper mapper) throws TokenCreationException { argument
45 List<Attribute> attributeList = mapper.getAttributes(ssoToken, saml2Config.getAttributeMap());
H A DDefaultAuthenticationStatementsProvider.java41 public List<AuthnStatement> get(SAML2Config saml2Config, String authNContextClassRef) throws TokenCreationException { argument
H A DDefaultConditionsProvider.java41 public Conditions get(SAML2Config saml2Config, Date issueInstant, argument
46 conditions.setNotOnOrAfter(new Date(issueInstant.getTime() + (saml2Config.getTokenLifetimeInSeconds() * 1000)));
52 String audience = saml2Config.getSpEntityId();
H A DSubjectProvider.java38 * @param saml2Config The STS-instance specific SAML2 configuration state
45 Subject get(String subjectId, String audienceId, SAML2Config saml2Config, argument
H A DDefaultSubjectProvider.java57 public Subject get(String subjectId, String spAcsUrl, SAML2Config saml2Config, argument
62 setNameIdentifier(subject, subjectId, saml2Config.getNameIdFormat());
81 (saml2Config.getTokenLifetimeInSeconds() * 1000)));
/forgerock/openam-v13/openam-sts/openam-token-service-sts/src/test/java/org/forgerock/openam/sts/tokengeneration/saml2/statements/
H A DDefaultAttributeStatementsProviderTest.java42 private SAML2Config saml2Config; field in class:DefaultAttributeStatementsProviderTest
64 saml2Config = createSAML2Config();
70 List<AttributeStatement> statements = defaultProvider.get(mockToken, saml2Config, mockAttributeMapper);
/forgerock/openam/openam-sts/openam-token-service-sts/src/test/java/org/forgerock/openam/sts/tokengeneration/saml2/statements/
H A DDefaultAttributeStatementsProviderTest.java42 private SAML2Config saml2Config; field in class:DefaultAttributeStatementsProviderTest
64 saml2Config = createSAML2Config();
70 List<AttributeStatement> statements = defaultProvider.get(mockToken, saml2Config, mockAttributeMapper);
/forgerock/openam-v13/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/config/user/
H A DSTSInstanceConfig.java50 private SAML2Config saml2Config; field in class:STSInstanceConfig.STSInstanceConfigBuilderBase
56 public T saml2Config(SAML2Config saml2Config) { argument
57 this.saml2Config = saml2Config;
83 protected final SAML2Config saml2Config; field in class:STSInstanceConfig
88 saml2Config = builder.saml2Config;
99 return saml2Config;
118 sb.append('\t').append("saml2Config
[all...]
/forgerock/openam/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/config/user/
H A DSTSInstanceConfig.java50 private SAML2Config saml2Config; field in class:STSInstanceConfig.STSInstanceConfigBuilderBase
56 public T saml2Config(SAML2Config saml2Config) { argument
57 this.saml2Config = saml2Config;
83 protected final SAML2Config saml2Config; field in class:STSInstanceConfig
88 saml2Config = builder.saml2Config;
99 return saml2Config;
118 sb.append('\t').append("saml2Config
[all...]

Completed in 92 milliseconds

12