Searched refs:AttributeStatement (Results 1 - 25 of 65) sorted by relevance

123

/forgerock/openam-v13/openam-sts/openam-token-service-sts/src/main/java/org/forgerock/openam/sts/tokengeneration/saml2/statements/
H A DDefaultAttributeStatementsProvider.java22 import com.sun.identity.saml2.assertion.AttributeStatement;
42 public List<AttributeStatement> get(SSOToken ssoToken, SAML2Config saml2Config, AttributeMapper mapper) throws TokenCreationException {
43 AttributeStatement attributeStatement = AssertionFactory.getInstance().createAttributeStatement();
55 List<AttributeStatement> attributeStatements = new ArrayList<AttributeStatement>(1);
H A DAttributeStatementsProvider.java20 import com.sun.identity.saml2.assertion.AttributeStatement;
27 * Defines the concerns of generating the AttributeStatement list to be included in the SAML2 assertion. If no custom
37 * @return The list of AttributeStatement instances containing the mapped attributes, or an empty list, if no attributes could
41 List<AttributeStatement> get(SSOToken ssoToken, SAML2Config saml2Config, AttributeMapper attributeMapper) throws TokenCreationException;
/forgerock/openam/openam-sts/openam-token-service-sts/src/main/java/org/forgerock/openam/sts/tokengeneration/saml2/statements/
H A DDefaultAttributeStatementsProvider.java22 import com.sun.identity.saml2.assertion.AttributeStatement;
42 public List<AttributeStatement> get(SSOToken ssoToken, SAML2Config saml2Config, AttributeMapper mapper) throws TokenCreationException {
43 AttributeStatement attributeStatement = AssertionFactory.getInstance().createAttributeStatement();
55 List<AttributeStatement> attributeStatements = new ArrayList<AttributeStatement>(1);
H A DAttributeStatementsProvider.java20 import com.sun.identity.saml2.assertion.AttributeStatement;
27 * Defines the concerns of generating the AttributeStatement list to be included in the SAML2 assertion. If no custom
35 * Invoked to obtain the List of AttributeStatement instances to be included in the generated SAML2 assertion.
41 * @return The list of AttributeStatement instances containing the mapped attributes, or an empty list, if no attributes could
45 List<AttributeStatement> get(SSOToken ssoToken, SAML2Config saml2Config, AttributeMapper attributeMapper) throws TokenCreationException;
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/
H A DFSSession.java35 import com.sun.identity.saml.assertion.AttributeStatement;
53 private AttributeStatement statement = null;
60 private AttributeStatement _autoFedStatement = null;
226 public void setBootStrapAttributeStatement(AttributeStatement statement) {
243 * @see #setBootStrapAttributeStatement(AttributeStatement)
245 public AttributeStatement getBootStrapAttributeStatement() {
280 public void setAutoFedStatement(AttributeStatement autoFedStmt) {
287 * @see #setAutoFedStatement(AttributeStatement)
289 public AttributeStatement getAutoFedStatement() {
H A DFSDefaultAttributeMapper.java40 import com.sun.identity.saml.assertion.AttributeStatement;
65 * <code>AttributeStatement</code>s.
110 AttributeStatement statement = (AttributeStatement)iter.next();
H A DFSDefaultRealmAttributeMapper.java40 import com.sun.identity.saml.assertion.AttributeStatement;
65 * <code>AttributeStatement</code>s.
112 AttributeStatement statement = (AttributeStatement)iter.next();
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/
H A DFSSession.java35 import com.sun.identity.saml.assertion.AttributeStatement;
53 private AttributeStatement statement = null;
60 private AttributeStatement _autoFedStatement = null;
226 public void setBootStrapAttributeStatement(AttributeStatement statement) {
243 * @see #setBootStrapAttributeStatement(AttributeStatement)
245 public AttributeStatement getBootStrapAttributeStatement() {
280 public void setAutoFedStatement(AttributeStatement autoFedStmt) {
287 * @see #setAutoFedStatement(AttributeStatement)
289 public AttributeStatement getAutoFedStatement() {
H A DFSDefaultAttributeMapper.java40 import com.sun.identity.saml.assertion.AttributeStatement;
65 * <code>AttributeStatement</code>s.
110 AttributeStatement statement = (AttributeStatement)iter.next();
H A DFSDefaultRealmAttributeMapper.java40 import com.sun.identity.saml.assertion.AttributeStatement;
65 * <code>AttributeStatement</code>s.
112 AttributeStatement statement = (AttributeStatement)iter.next();
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/
H A DAttributeStatement.java25 * $Id: AttributeStatement.java,v 1.2 2008/06/25 05:47:40 qcheng Exp $
40 * The <code>AttributeStatement</code> element describes a statement by
61 public interface AttributeStatement extends Statement { interface in inherits:Statement
H A DAssertion.java177 List<AttributeStatement> getAttributeStatements();
211 void setAttributeStatements(List<AttributeStatement> statements) throws SAML2Exception;
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/
H A DAttributeStatement.java25 * $Id: AttributeStatement.java,v 1.2 2008/06/25 05:47:40 qcheng Exp $
40 * The <code>AttributeStatement</code> element describes a statement by
61 public interface AttributeStatement extends Statement { interface in inherits:Statement
H A DAssertion.java177 List<AttributeStatement> getAttributeStatements();
211 void setAttributeStatements(List<AttributeStatement> statements) throws SAML2Exception;
/forgerock/openam-v13/openam-sts/openam-token-service-sts/src/test/java/org/forgerock/openam/sts/tokengeneration/saml2/statements/
H A DDefaultAttributeStatementsProviderTest.java22 import com.sun.identity.saml2.assertion.AttributeStatement;
70 List<AttributeStatement> statements = defaultProvider.get(mockToken, saml2Config, mockAttributeMapper);
71 AttributeStatement statement = statements.get(0);
/forgerock/openam/openam-sts/openam-token-service-sts/src/test/java/org/forgerock/openam/sts/tokengeneration/saml2/statements/
H A DDefaultAttributeStatementsProviderTest.java22 import com.sun.identity.saml2.assertion.AttributeStatement;
70 List<AttributeStatement> statements = defaultProvider.get(mockToken, saml2Config, mockAttributeMapper);
71 AttributeStatement statement = statements.get(0);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/assertion/
H A DAttributeStatement.java25 * $Id: AttributeStatement.java,v 1.2 2008/06/25 05:47:31 qcheng Exp $
40 *The <code>AttributeStatement</code> element supplies a statement by the issuer
44 public class AttributeStatement extends SubjectStatement { class in inherits:SubjectStatement
50 protected AttributeStatement() { method in class:AttributeStatement
60 public AttributeStatement(Element element)throws SAMLException { method in class:AttributeStatement
63 SAMLUtilsCommon.debug.message("AttributeStatement: null input.");
68 // check if it's an AttributeStatement
70 "AttributeStatement");
72 SAMLUtilsCommon.debug.message("AttributeStatement: Wrong input.");
77 //Handle the children elements of AttributeStatement
169 public AttributeStatement(Subject subject, List attribute) method in class:AttributeStatement
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/assertion/
H A DAttributeStatement.java25 * $Id: AttributeStatement.java,v 1.2 2008/06/25 05:47:31 qcheng Exp $
40 *The <code>AttributeStatement</code> element supplies a statement by the issuer
44 public class AttributeStatement extends SubjectStatement { class in inherits:SubjectStatement
50 protected AttributeStatement() { method in class:AttributeStatement
60 public AttributeStatement(Element element)throws SAMLException { method in class:AttributeStatement
63 SAMLUtilsCommon.debug.message("AttributeStatement: null input.");
68 // check if it's an AttributeStatement
70 "AttributeStatement");
72 SAMLUtilsCommon.debug.message("AttributeStatement: Wrong input.");
77 //Handle the children elements of AttributeStatement
169 public AttributeStatement(Subject subject, List attribute) method in class:AttributeStatement
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/util/
H A DFSAttributeStatementHelper.java54 import com.sun.identity.saml.assertion.AttributeStatement;
59 * This class helps in creating <code>AttributeStatement</code>s to add
66 * Gets a SAML <code>AttributeStatement</code> by using an
75 public static AttributeStatement getAutoFedAttributeStatement(
87 "AttributeStatement: IDFFMetaException ", fae);
96 "AttributeStatement: AutoFederate Attribute is null");
115 "AttributeStatement: SessionException ", se);
119 "AttributeStatement: DataStoreProviderException ", ie);
137 return new AttributeStatement(sub, attributeList);
141 "AttributeStatement
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/util/
H A DFSAttributeStatementHelper.java54 import com.sun.identity.saml.assertion.AttributeStatement;
59 * This class helps in creating <code>AttributeStatement</code>s to add
66 * Gets a SAML <code>AttributeStatement</code> by using an
75 public static AttributeStatement getAutoFedAttributeStatement(
87 "AttributeStatement: IDFFMetaException ", fae);
96 "AttributeStatement: AutoFederate Attribute is null");
115 "AttributeStatement: SessionException ", se);
119 "AttributeStatement: DataStoreProviderException ", ie);
137 return new AttributeStatement(sub, attributeList);
141 "AttributeStatement
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DAssertionImpl.java54 import com.sun.identity.saml2.assertion.AttributeStatement;
83 private List<AttributeStatement> attributeStatements = new ArrayList();
104 "AttributeStatement";
558 public List<AttributeStatement> getAttributeStatements() {
616 public void setAttributeStatements(List<AttributeStatement> statements) throws SAML2Exception {
856 AttributeStatement st =
857 (AttributeStatement)attributeStatements.get(i);
907 AttributeStatement attr =
908 (AttributeStatement)attributeStatements.get(i);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/plugins/
H A DDefaultLibrarySPAccountMapper.java43 import com.sun.identity.saml.assertion.AttributeStatement;
168 AttributeStatement statement,
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DAssertionImpl.java56 import com.sun.identity.saml2.assertion.AttributeStatement;
85 private List<AttributeStatement> attributeStatements = new ArrayList();
106 "AttributeStatement";
560 public List<AttributeStatement> getAttributeStatements() {
618 public void setAttributeStatements(List<AttributeStatement> statements) throws SAML2Exception {
858 AttributeStatement st =
859 (AttributeStatement)attributeStatements.get(i);
909 AttributeStatement attr =
910 (AttributeStatement)attributeStatements.get(i);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/plugins/
H A DDefaultLibrarySPAccountMapper.java43 import com.sun.identity.saml.assertion.AttributeStatement;
168 AttributeStatement statement,
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/plugins/
H A DDefaultLibrarySPAccountMapper.java43 import com.sun.identity.saml2.assertion.AttributeStatement;
171 * @return Auto federation mapped user from the assertion auto federation <code>AttributeStatement</code>. if the
197 List<AttributeStatement> attributeStatements = assertion.getAttributeStatements();
204 for (AttributeStatement statement : attributeStatements) {
299 private Set<String> getAttribute(AttributeStatement statement, String attributeName,

Completed in 125 milliseconds

123