Searched refs:AuthnStatement (Results 1 - 23 of 23) sorted by relevance

/forgerock/openam-v13/openam-sts/openam-token-service-sts/src/main/java/org/forgerock/openam/sts/tokengeneration/saml2/statements/
H A DAuthenticationStatementsProvider.java19 import com.sun.identity.saml2.assertion.AuthnStatement;
26 * Defines the concern of providing the AuthnStatement list to be included in the generated SAML2 assertion. If no
32 * Invoked to obtain the List of AuthnStatement instances to be included in the generated SAML2 assertion.
38 List<AuthnStatement> get(SAML2Config saml2Config, String authnContextClassRef) throws TokenCreationException;
H A DDefaultAuthenticationStatementsProvider.java21 import com.sun.identity.saml2.assertion.AuthnStatement;
39 public List<AuthnStatement> get(SAML2Config saml2Config, String authNContextClassRef) throws TokenCreationException {
41 AuthnStatement authnStatement = AssertionFactory.getInstance().createAuthnStatement();
46 ArrayList<AuthnStatement> statements = new ArrayList<AuthnStatement>(1);
/forgerock/openam/openam-sts/openam-token-service-sts/src/main/java/org/forgerock/openam/sts/tokengeneration/saml2/statements/
H A DAuthenticationStatementsProvider.java19 import com.sun.identity.saml2.assertion.AuthnStatement;
26 * Defines the concern of providing the AuthnStatement list to be included in the generated SAML2 assertion. If no
35 * Invoked to obtain the List of AuthnStatement instances to be included in the generated SAML2 assertion.
42 List<AuthnStatement> get(SAML2Config saml2Config, String authnContextClassRef) throws TokenCreationException;
H A DDefaultAuthenticationStatementsProvider.java23 import com.sun.identity.saml2.assertion.AuthnStatement;
41 public List<AuthnStatement> get(SAML2Config saml2Config, String authNContextClassRef) throws TokenCreationException {
43 AuthnStatement authnStatement = AssertionFactory.getInstance().createAuthnStatement();
48 ArrayList<AuthnStatement> statements = new ArrayList<AuthnStatement>(1);
/forgerock/openam-v13/openam-sts/openam-token-service-sts/src/test/java/org/forgerock/openam/sts/tokengeneration/saml2/statements/
H A DDefaultAuthenticationStatementsProviderTest.java19 import com.sun.identity.saml2.assertion.AuthnStatement;
39 List<AuthnStatement> statements = provider.get(createSAML2Config(), AUTHN_CONTEXT);
/forgerock/openam/openam-sts/openam-token-service-sts/src/test/java/org/forgerock/openam/sts/tokengeneration/saml2/statements/
H A DDefaultAuthenticationStatementsProviderTest.java19 import com.sun.identity.saml2.assertion.AuthnStatement;
39 List<AuthnStatement> statements = provider.get(createSAML2Config(), AUTHN_CONTEXT);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/
H A DAuthnStatement.java25 * $Id: AuthnStatement.java,v 1.2 2008/06/25 05:47:40 qcheng Exp $
38 * The <code>AuthnStatement</code> element describes a statement by the
67 public interface AuthnStatement extends Statement { interface in inherits:Statement
H A DAssertion.java163 List<AuthnStatement> getAuthnStatements();
193 void setAuthnStatements(List<AuthnStatement> statements) throws SAML2Exception;
H A DAssertionFactory.java1286 * Returns a new instance of <code>AuthnStatement</code>.
1289 * @return a new instance of <code>AuthnStatement</code>.
1292 public AuthnStatement createAuthnStatement() {
1298 return (AuthnStatement) obj;
1303 * Returns a new instance of <code>AuthnStatement</code>. The return object
1307 * <code>AuthnStatement</code>.
1308 * @return a new instance of <code>AuthnStatement</code>.
1313 public AuthnStatement createAuthnStatement(org.w3c.dom.Element elem)
1321 return (AuthnStatement) obj;
1326 * Returns a new instance of <code>AuthnStatement</cod
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/
H A DAuthnStatement.java25 * $Id: AuthnStatement.java,v 1.2 2008/06/25 05:47:40 qcheng Exp $
38 * The <code>AuthnStatement</code> element describes a statement by the
67 public interface AuthnStatement extends Statement { interface in inherits:Statement
H A DAssertion.java163 List<AuthnStatement> getAuthnStatements();
193 void setAuthnStatements(List<AuthnStatement> statements) throws SAML2Exception;
H A DAssertionFactory.java1286 * Returns a new instance of <code>AuthnStatement</code>.
1289 * @return a new instance of <code>AuthnStatement</code>.
1292 public AuthnStatement createAuthnStatement() {
1298 return (AuthnStatement) obj;
1303 * Returns a new instance of <code>AuthnStatement</code>. The return object
1307 * <code>AuthnStatement</code>.
1308 * @return a new instance of <code>AuthnStatement</code>.
1313 public AuthnStatement createAuthnStatement(org.w3c.dom.Element elem)
1321 return (AuthnStatement) obj;
1326 * Returns a new instance of <code>AuthnStatement</cod
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DAssertionImpl.java55 import com.sun.identity.saml2.assertion.AuthnStatement;
81 private List<AuthnStatement> authnStatements = new ArrayList();
100 public static String ASSERTION_AUTHNSTATEMENT = "AuthnStatement";
538 public List<AuthnStatement> getAuthnStatements() {
584 public void setAuthnStatements(List<AuthnStatement> statements) throws SAML2Exception {
841 AuthnStatement st = (AuthnStatement)authnStatements.get(i);
887 AuthnStatement authn =
888 (AuthnStatement)authnStatements.get(i);
H A DAuthnStatementImpl.java46 import com.sun.identity.saml2.assertion.AuthnStatement;
53 * This is the default implementation of interface <code>AuthnStatement</code>.
55 * The <code>AuthnStatement</code> element describes a statement by the
82 public class AuthnStatementImpl implements AuthnStatement {
126 // Make sure this is an AuthnStatement.
127 if (!SAML2SDKUtils.checkStatement(element, "AuthnStatement")) {
130 + "not AuthnStatement.");
136 // handle the attributes of <AuthnStatement> element
226 * Class constructor with <code>AuthnStatement</code> in
236 * Class constructor with <code>AuthnStatement</cod
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DAssertionImpl.java57 import com.sun.identity.saml2.assertion.AuthnStatement;
83 private List<AuthnStatement> authnStatements = new ArrayList();
102 public static String ASSERTION_AUTHNSTATEMENT = "AuthnStatement";
540 public List<AuthnStatement> getAuthnStatements() {
586 public void setAuthnStatements(List<AuthnStatement> statements) throws SAML2Exception {
843 AuthnStatement st = (AuthnStatement)authnStatements.get(i);
889 AuthnStatement authn =
890 (AuthnStatement)authnStatements.get(i);
H A DAuthnStatementImpl.java46 import com.sun.identity.saml2.assertion.AuthnStatement;
53 * This is the default implementation of interface <code>AuthnStatement</code>.
55 * The <code>AuthnStatement</code> element describes a statement by the
82 public class AuthnStatementImpl implements AuthnStatement {
126 // Make sure this is an AuthnStatement.
127 if (!SAML2SDKUtils.checkStatement(element, "AuthnStatement")) {
130 + "not AuthnStatement.");
136 // handle the attributes of <AuthnStatement> element
226 * Class constructor with <code>AuthnStatement</code> in
236 * Class constructor with <code>AuthnStatement</cod
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
H A DAuthnQueryUtil.java52 import com.sun.identity.saml2.assertion.AuthnStatement;
280 AuthnStatement authnStmt =
281 (AuthnStatement)asIter.next();
H A DIDPSSOUtil.java59 import com.sun.identity.saml2.assertion.AuthnStatement;
899 AuthnStatement authnStatement = null;
1124 * Returns a <code>SAML AuthnStatement</code> object.
1129 * <code>AuthnStatement</code> is a new session index.
1134 * @return The <code>SAML AuthnStatement</code> object.
1137 private static AuthnStatement getAuthnStatement(
1148 AuthnStatement authnStatement =
1235 "SessionIndex (in AuthnStatement) =" + sessionIndex);
3048 final List<AuthnStatement> authnStatements = assertion.getAuthnStatements();
3050 for (AuthnStatement authnStatemen
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
H A DAuthnQueryUtil.java54 import com.sun.identity.saml2.assertion.AuthnStatement;
282 AuthnStatement authnStmt =
283 (AuthnStatement)asIter.next();
H A DIDPSSOUtil.java61 import com.sun.identity.saml2.assertion.AuthnStatement;
908 AuthnStatement authnStatement = null;
1133 * Returns a <code>SAML AuthnStatement</code> object.
1138 * <code>AuthnStatement</code> is a new session index.
1144 * @return The <code>SAML AuthnStatement</code> object.
1147 private static AuthnStatement getAuthnStatement(
1159 AuthnStatement authnStatement =
1266 "SessionIndex (in AuthnStatement) =" + sessionIndex);
3081 final List<AuthnStatement> authnStatements = assertion.getAuthnStatements();
3083 for (AuthnStatement authnStatemen
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/fedlet/ag/
H A DAssertionGen.java159 AuthnStatement authnStatement = AssertionFactory.getInstance().createAuthnStatement();
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/common/
H A DSAML2Utils.java49 import com.sun.identity.saml2.assertion.AuthnStatement;
886 AuthnStatement authnStmt = (AuthnStatement) authnStmts.get(0);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/common/
H A DSAML2Utils.java51 import com.sun.identity.saml2.assertion.AuthnStatement;
922 AuthnStatement authnStmt = (AuthnStatement) authnStmts.get(0);

Completed in 147 milliseconds