Searched defs:hostEntityID (Results 26 - 50 of 70) sorted by relevance

123

/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/
H A DFSRealmIDPProxyImpl.java62 * @param hostEntityID ProxyIDP entity ID.
71 String hostEntityID,
105 .append(hostEntityID);
68 getPreferredIDP( FSAuthnRequest authnRequest, String realm, String hostEntityID, HttpServletRequest request, HttpServletResponse response) argument
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/plugins/
H A DDefaultAttributeMapper.java76 * @param hostEntityID <code>EntityID</code> of the hosted provider.
82 public Map<String, String> getConfigAttributeMap(String realm, String hostEntityID, argument
85 return SAML2Utils.getConfigAttributeMap(realm, hostEntityID, role);
H A DDefaultSPAttributeMapper.java66 * @param hostEntityID <code>EntityID</code> of the hosted provider.
77 String hostEntityID,
86 if (hostEntityID == null) {
95 Map<String, String> configMap = getConfigAttributeMap(realm, hostEntityID, SP);
107 boolean toUnescape = needToUnescapeXMLSpecialCharacters(hostEntityID, remoteEntityID, realm);
142 * @param hostEntityID Entity ID for hosted provider.
148 protected boolean needToUnescapeXMLSpecialCharacters(String hostEntityID, argument
74 getAttributes( List<Attribute> attributes, String userID, String hostEntityID, String remoteEntityID, String realm ) argument
H A DIDPAccountMapper.java54 * @param hostEntityID <code>EntityID</code> of the hosted provider.
61 public NameID getNameID(Object session, String hostEntityID, String remoteEntityID, String realm, argument
72 * @param hostEntityID <code>EntityID</code> of the hosted provider.
77 public String getIdentity(ManageNameIDRequest manageNameIDRequest, String hostEntityID, String realm) argument
85 * @param hostEntityID <code>EntityID</code> of the hosted provider.
91 public String getIdentity(NameID nameID, String hostEntityID, String remoteEntityID, String realm) argument
98 * @param hostEntityID The hosted IdP's entityID.
104 public boolean shouldPersistNameIDFormat(String realm, String hostEntityID, String remoteEntityID, argument
H A DSPAccountMapper.java55 * @param hostEntityID <code>EntityID</code> of the hosted provider.
60 public String getIdentity(Assertion assertion, String hostEntityID, String realm) throws SAML2Exception; argument
69 * @param hostEntityID <code>EntityID</code> of the hosted provider.
74 public String getIdentity(ManageNameIDRequest manageNameIDRequest, String hostEntityID, String realm) argument
81 * @param hostEntityID The hosted SP's entityID.
87 public boolean shouldPersistNameIDFormat(String realm, String hostEntityID, String remoteEntityID, argument
H A DSPAttributeMapper.java68 * @param hostEntityID <code>EntityID</code> of the hosted provider.
78 String hostEntityID,
75 getAttributes( List<Attribute> attributes, String userID, String hostEntityID, String remoteEntityID, String realm ) argument
H A DDefaultIDPAccountMapper.java69 public NameID getNameID(Object session, String hostEntityID, String remoteEntityID, String realm, argument
97 nameIDValue = getNameIDValueFromUserProfile(realm, hostEntityID, userID, nameIDFormat);
103 nameIDValue = getNameIDValueFromUserProfile(realm, hostEntityID, userID, nameIDFormat);
107 if (shouldPersistNameIDFormat(realm, hostEntityID, remoteEntityID, nameIDFormat)) {
122 nameID.setNameQualifier(hostEntityID);
129 public String getIdentity(NameID nameID, String hostEntityID, String remoteEntityID, String realm) argument
136 if (hostEntityID == null) {
149 debug.message("DefaultIDPAccountMapper.getIdentity: realm = " + realm + ", hostEntityID = " + hostEntityID
154 return dsProvider.getUserID(realm, SAML2Utils.getNameIDKeyMap(nameID, hostEntityID, remoteEntityI
176 shouldPersistNameIDFormat(String realm, String hostEntityID, String remoteEntityID, String nameIDFormat) argument
187 getNameIDValueFromUserProfile(String realm, String hostEntityID, String userID, String nameIDFormat) argument
216 getFormatAttributeMap(String realm, String hostEntityID) argument
[all...]
H A DSPAuthnContextMapper.java61 * @param hostEntityID Entity Identifier of the Host.
67 String hostEntityID,
82 * @param hostEntityID the Hosted Provider Entity ID.
89 String hostEntityID, String idpEntityID)
100 * @param hostEntityID Entity ID of the Service Provider.
107 String hostEntityID);
66 getRequestedAuthnContext(String realm, String hostEntityID, Map paramsMap) argument
87 getAuthLevel(RequestedAuthnContext reqCtx, AuthnContext authContext,String realm, String hostEntityID, String idpEntityID) argument
105 isAuthnContextMatching(List requestedACClassRefs, String acClassRef, String comparison, String realm, String hostEntityID) argument
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/plugins/
H A DDefaultAttributeMapper.java75 * @param hostEntityID <code>EntityID</code> of the hosted provider.
82 String realm, String hostEntityID) throws WSFederationException {
89 if(hostEntityID == null) {
98 realm, hostEntityID);
101 realm, hostEntityID);
119 + "Attribute map is not defined for entity: " + hostEntityID);
81 getConfigAttributeMap( String realm, String hostEntityID) argument
H A DDefaultLibrarySPAccountMapper.java86 * @param hostEntityID <code>EntityID</code> of the hosted provider.
94 String hostEntityID,
103 if(hostEntityID == null) {
138 " realm = " + realm + " hostEntityID = " + hostEntityID);
143 realm, hostEntityID, remoteEntityID));
171 String hostEntityID)
92 getIdentity( RequestSecurityTokenResponse rstr, String hostEntityID, String realm ) argument
167 getAttribute( AttributeStatement statement, String attributeName, String realm, String hostEntityID) argument
H A DDefaultSPAttributeMapper.java68 * @param hostEntityID <code>EntityID</code> of the hosted provider.
78 String hostEntityID,
88 if(hostEntityID == null) {
99 Map configMap = getConfigAttributeMap(realm, hostEntityID);
75 getAttributes( List attributes, String userID, String hostEntityID, String remoteEntityID, String realm ) argument
H A DSPAttributeMapper.java63 * @param hostEntityID <code>EntityID</code> of the hosted provider.
72 java.lang.String hostEntityID,
69 getAttributes( java.util.List attributes, java.lang.String userID, java.lang.String hostEntityID, java.lang.String remoteEntityID, java.lang.String realm ) argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/common/
H A DNameIDInfoKey.java65 * @param hostEntityID <code>EntityID</code> of the hosted provider.
71 String hostEntityID,
80 if(hostEntityID == null) {
91 _hostEntityID = hostEntityID;
69 NameIDInfoKey( String nameIDValue, String hostEntityID, String remoteEntityID ) argument
H A DAccountUtils.java70 * @param hostEntityID <code>EntityID</code> of the hosted entity.
78 String hostEntityID,
88 if(hostEntityID == null) {
110 String filter = hostEntityID + DELIM + remoteEntityID + DELIM;
76 getAccountFederation( String userID, String hostEntityID, String remoteEntityID) argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/plugins/
H A DDefaultIDPAccountMapper.java65 public NameID getNameID(Object session, String hostEntityID, String remoteEntityID, String realm, argument
93 nameIDValue = getNameIDValueFromUserProfile(realm, hostEntityID, userID, nameIDFormat);
99 nameIDValue = getNameIDValueFromUserProfile(realm, hostEntityID, userID, nameIDFormat);
112 nameID.setNameQualifier(hostEntityID);
119 public String getIdentity(NameID nameID, String hostEntityID, String remoteEntityID, String realm) argument
126 if (hostEntityID == null) {
139 debug.message("DefaultIDPAccountMapper.getIdentity: realm = " + realm + ", hostEntityID = " + hostEntityID
144 return dsProvider.getUserID(realm, SAML2Utils.getNameIDKeyMap(nameID, hostEntityID, remoteEntityID, realm,
160 * @param hostEntityID {
166 shouldPersistNameIDFormat(String realm, String hostEntityID, String remoteEntityID, String nameIDFormat) argument
177 getNameIDValueFromUserProfile(String realm, String hostEntityID, String userID, String nameIDFormat) argument
198 getFormatAttributeMap(String realm, String hostEntityID) argument
[all...]
H A DSPAuthnContextMapper.java61 * @param hostEntityID Entity Identifier of the Host.
67 String hostEntityID,
82 * @param hostEntityID the Hosted Provider Entity ID.
89 String hostEntityID, String idpEntityID)
100 * @param hostEntityID Entity ID of the Service Provider.
107 String hostEntityID);
66 getRequestedAuthnContext(String realm, String hostEntityID, Map paramsMap) argument
87 getAuthLevel(RequestedAuthnContext reqCtx, AuthnContext authContext,String realm, String hostEntityID, String idpEntityID) argument
105 isAuthnContextMatching(List requestedACClassRefs, String acClassRef, String comparison, String realm, String hostEntityID) argument
H A DDefaultAccountMapper.java98 * @param hostEntityID <code>EntityID</code> of the hosted provider.
106 String hostEntityID,
115 if(hostEntityID == null) {
130 final Set<PrivateKey> decryptionKeys = KeyUtil.getDecryptionKeys(getSSOConfig(realm, hostEntityID));
133 debug.error("Unable to retrieve SAML entity config for entity: " + hostEntityID, sme);
142 " realm = " + realm +" hostEntityID = " + hostEntityID);
147 (nameID, hostEntityID, remoteEntityID, realm, role));
104 getIdentity( ManageNameIDRequest manageNameIDRequest, String hostEntityID, String realm ) argument
H A DDefaultLibraryIDPAttributeMapper.java124 * @param hostEntityID <code>EntityID</code> of the hosted entity.
129 public List getAttributes(Object session, String hostEntityID, String remoteEntityID, String realm) argument
132 if (hostEntityID == null) {
159 configMap = getConfigAttributeMap(realm, hostEntityID, IDP);
268 attributeValues, hostEntityID, remoteEntityID, realm));
283 * @param hostEntityID Entity ID for hosted provider.
289 protected boolean needToEscapeXMLSpecialCharacters(String hostEntityID, String remoteEntityID, String realm) { argument
299 * @param hostEntityID Entity ID for hosted provider.
306 Set<String> values, String hostEntityID, String remoteEntityID, String realm) throws SAML2Exception {
320 boolean toEscape = needToEscapeXMLSpecialCharacters(hostEntityID, remoteEntityI
305 getSAMLAttribute(String name, String nameFormat, Set<String> values, String hostEntityID, String remoteEntityID, String realm) argument
[all...]
H A DDefaultLibrarySPAccountMapper.java80 * @param hostEntityID <code>EntityID</code> of the hosted provider.
86 public String getIdentity(Assertion assertion, String hostEntityID, String realm) throws SAML2Exception { argument
91 if (hostEntityID == null) {
104 decryptionKeys = KeyUtil.getDecryptionKeys(getSSOConfig(realm, hostEntityID));
114 userID = getTransientUser(realm, hostEntityID);
122 userID = getAutoFedUser(realm, hostEntityID, assertion, nameID.getValue(), decryptionKeys);
126 if (useNameIDAsSPUserID(realm, hostEntityID) && !isAutoFedEnabled(realm, hostEntityID)) {
139 public boolean shouldPersistNameIDFormat(String realm, String hostEntityID, String remoteEntityID, argument
141 return !Boolean.parseBoolean(SAML2Utils.getAttributeValueFromSSOConfig(realm, hostEntityID,
[all...]
H A DDefaultSPAuthnContextMapper.java85 * @param hostEntityID Entity ID of the Service Provider.
92 String hostEntityID, Map paramsMap)
130 Map authRefMap = getAuthRefMap(realm, hostEntityID);
207 realm, hostEntityID, SAML2Constants.SP_ROLE,
301 * @param hostEntityID the Service Provider Identity String.
309 String hostEntityID, String idpEntityID)
313 (Map) SPCache.authContextHash.get(hostEntityID+"|"+realm);
315 authRefMap = getAuthRefMap(realm,hostEntityID);
321 SAML2Utils.debug.message("DefaultSPAuthnContextMapper:hostEntityID:"
322 + hostEntityID);
91 getRequestedAuthnContext(String realm, String hostEntityID, Map paramsMap) argument
306 getAuthLevel(RequestedAuthnContext reqCtx, AuthnContext authnContext, String realm, String hostEntityID, String idpEntityID) argument
380 isAuthnContextMatching(List requestedACClassRefs, String acClassRef, String comparison, String realm, String hostEntityID) argument
393 getAuthnCtxFromSPConfig(String realm, String hostEntityID) argument
483 getAuthRefMap(String realm,String hostEntityID) argument
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/common/
H A DAccountUtils.java61 * @param hostEntityID <code>EntityID</code> of the hosted entity.
69 String hostEntityID,
82 if(hostEntityID == null) {
104 String filter = hostEntityID + DELIM + remoteEntityID + DELIM;
67 getAccountFederation( String userID, String hostEntityID, String remoteEntityID) argument
/forgerock/openam-v13/openam-sts/openam-token-service-sts/src/main/java/org/forgerock/openam/sts/tokengeneration/saml2/statements/
H A DDefaultAttributeMapper.java97 * @param hostEntityID <code>EntityID</code> of the hosted provider. Parameter ignored.
103 public Map<String, String> getConfigAttributeMap(String realm, String hostEntityID, argument
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/common/
H A DNameIDInfoKey.java65 * @param hostEntityID <code>EntityID</code> of the hosted provider.
71 String hostEntityID,
80 if(hostEntityID == null) {
91 _hostEntityID = hostEntityID;
69 NameIDInfoKey( String nameIDValue, String hostEntityID, String remoteEntityID ) argument
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/common/
H A DAccountUtils.java61 * @param hostEntityID <code>EntityID</code> of the hosted entity.
69 String hostEntityID,
82 if(hostEntityID == null) {
104 String filter = hostEntityID + DELIM + remoteEntityID + DELIM;
67 getAccountFederation( String userID, String hostEntityID, String remoteEntityID) argument
/forgerock/openam/openam-sts/openam-token-service-sts/src/main/java/org/forgerock/openam/sts/tokengeneration/saml2/statements/
H A DDefaultAttributeMapper.java99 * @param hostEntityID <code>EntityID</code> of the hosted provider. Parameter ignored.
105 public Map<String, String> getConfigAttributeMap(String realm, String hostEntityID, argument

Completed in 71 milliseconds

123