Searched refs:sessionIndex (Results 1 - 25 of 62) sorted by relevance

123

/forgerock/openam-v13/openam-authentication/openam-auth-saml2/src/main/java/org/forgerock/openam/authentication/modules/saml2/
H A DSAML2ResponseData.java30 private String sessionIndex; field in class:SAML2ResponseData
43 * @param sessionIndex Session index used for this authentication.
48 public SAML2ResponseData(String sessionIndex, Subject subject, Assertion assertion, ResponseInfo responseInfo) { argument
49 Reject.ifNull(sessionIndex, subject, assertion, responseInfo);
53 this.sessionIndex = sessionIndex;
76 * Sets the sessionIndex value.
78 * @param sessionIndex value of the sessionIndex.
80 public void setSessionIndex(String sessionIndex) { argument
[all...]
H A DSAML2PostAuthenticationPlugin.java101 final String sessionIndex = ssoToken.getProperty(SAML2Constants.SESSION_INDEX);
126 setupSingleLogOut(ssoToken, metaAlias, sessionIndex, spEntityId, idpEntityId, nameId);
129 configureIdpInitSLO(sessionProvider, ssoToken, sessionIndex, metaAlias, info, isTransient, requestId);
164 private void configureIdpInitSLO(SessionProvider sessionProvider, SSOToken session, String sessionIndex, argument
167 SPACSUtils.saveInfoInMemory(sessionProvider, session, sessionIndex, metaAlias,
171 private void setupSingleLogOut(SSOToken ssoToken, String metaAlias, String sessionIndex, String spEntityId, argument
197 logoutEndpoint, nameId, sessionIndex);
266 EndpointType logoutEndpoint, NameID nameId, String sessionIndex)
286 if (sessionIndex != null) {
287 logoutReq.setSessionIndex(Collections.singletonList(sessionIndex));
265 createLogoutRequest(String metaAlias, String realm, String idpEntityId, EndpointType logoutEndpoint, NameID nameId, String sessionIndex) argument
[all...]
/forgerock/openam/openam-authentication/openam-auth-saml2/src/main/java/org/forgerock/openam/authentication/modules/saml2/
H A DSAML2ResponseData.java30 private String sessionIndex; field in class:SAML2ResponseData
43 * @param sessionIndex Session index used for this authentication.
48 public SAML2ResponseData(String sessionIndex, Subject subject, Assertion assertion, ResponseInfo responseInfo) { argument
49 Reject.ifNull(sessionIndex, subject, assertion, responseInfo);
53 this.sessionIndex = sessionIndex;
76 * Sets the sessionIndex value.
78 * @param sessionIndex value of the sessionIndex.
80 public void setSessionIndex(String sessionIndex) { argument
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/
H A DAuthnQuery.java88 * @param sessionIndex new value of the <code>SessionIndex</code> attribute.
92 public void setSessionIndex(String sessionIndex) throws SAML2Exception; argument
/forgerock/openam-v13/openam-federation/OpenFM/src/main/java/org/forgerock/openam/authentication/
H A DSaml2SessionUpgradeHandler.java50 final String sessionIndex = oldSession.getProperty(SAML2Constants.IDP_SESSION_INDEX);
52 if (StringUtils.isNotEmpty(sessionIndex)) {
65 IDPSession idpSession = IDPCache.idpSessionsByIndices.get(sessionIndex);
70 (IDPSessionCopy) SAML2FailoverUtils.retrieveSAML2Token(sessionIndex);
84 SAML2FailoverUtils.deleteSAML2Token(sessionIndex);
86 SAML2FailoverUtils.saveSAML2TokenWithoutSecondaryKey(sessionIndex,
93 IDPCache.idpSessionsByIndices.put(sessionIndex, idpSession);
104 //We set the sessionIndex to a dummy value so that IDPSessionListener won't try to clear out the caches
105 //for the still valid sessionIndex.
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DAuthnQueryImpl.java50 protected String sessionIndex; field in class:AuthnQueryImpl
132 return sessionIndex;
138 * @param sessionIndex new value of the <code>SessionIndex</code> attribute.
142 public void setSessionIndex(String sessionIndex) throws SAML2Exception{ argument
147 this.sessionIndex = sessionIndex;
162 if ((sessionIndex != null) && (sessionIndex.length() > 0)) {
166 .append(sessionIndex).append(SAML2Constants.QUOTE);
183 sessionIndex
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DAuthnQueryImpl.java50 protected String sessionIndex; field in class:AuthnQueryImpl
132 return sessionIndex;
138 * @param sessionIndex new value of the <code>SessionIndex</code> attribute.
142 public void setSessionIndex(String sessionIndex) throws SAML2Exception{ argument
147 this.sessionIndex = sessionIndex;
162 if ((sessionIndex != null) && (sessionIndex.length() > 0)) {
166 .append(sessionIndex).append(SAML2Constants.QUOTE);
183 sessionIndex
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
H A DResponseInfo.java47 private String sessionIndex = null; field in class:ResponseInfo
158 sessionIndex = index;
167 return sessionIndex;
H A DIDPSessionListener.java122 "No sessionIndex stored in session.");
126 String sessionIndex = values[0];
127 if (sessionIndex == null || sessionIndex.length() == 0) {
131 "No sessionIndex stored in session.");
137 idpSessionsByIndices.get(sessionIndex);
182 initiateIDPSingleLogout(sessionIndex,
228 sessionIndex + " already removed.");
232 IDPCache.idpSessionsByIndices.remove(sessionIndex);
233 IDPCache.authnContextCache.remove(sessionIndex);
289 initiateIDPSingleLogout(String sessionIndex, String metaAlias, String realm, String binding, NameID nameID, String spEntityID, Map paramsMap) argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
H A DResponseInfo.java50 private String sessionIndex = null; field in class:ResponseInfo
168 sessionIndex = index;
177 return sessionIndex;
H A DIDPSessionListener.java122 "No sessionIndex stored in session.");
126 String sessionIndex = values[0];
127 if (sessionIndex == null || sessionIndex.length() == 0) {
131 "No sessionIndex stored in session.");
137 idpSessionsByIndices.get(sessionIndex);
182 initiateIDPSingleLogout(sessionIndex,
228 sessionIndex + " already removed.");
232 IDPCache.idpSessionsByIndices.remove(sessionIndex);
233 IDPCache.authnContextCache.remove(sessionIndex);
289 initiateIDPSingleLogout(String sessionIndex, String metaAlias, String realm, String binding, NameID nameID, String spEntityID, Map paramsMap) argument
[all...]
/forgerock/openam/openam-federation/OpenFM/src/main/java/org/forgerock/openam/authentication/
H A DSaml2SessionUpgradeHandler.java52 final String sessionIndex = oldSession.getProperty(SAML2Constants.IDP_SESSION_INDEX);
54 if (StringUtils.isNotEmpty(sessionIndex)) {
67 IDPSession idpSession = IDPCache.idpSessionsByIndices.get(sessionIndex);
72 (IDPSessionCopy) SAML2FailoverUtils.retrieveSAML2Token(sessionIndex);
86 SAML2FailoverUtils.deleteSAML2Token(sessionIndex);
88 SAML2FailoverUtils.saveSAML2TokenWithoutSecondaryKey(sessionIndex,
95 IDPCache.idpSessionsByIndices.put(sessionIndex, idpSession);
106 //We set the sessionIndex to a dummy value so that IDPSessionListener won't try to clear out the caches
107 //for the still valid sessionIndex.
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/
H A DAuthnQuery.java93 * @param sessionIndex new value of the <code>SessionIndex</code> attribute.
97 public void setSessionIndex(String sessionIndex) throws SAML2Exception; argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/
H A DFSSession.java50 private String sessionIndex = null; field in class:FSSession
113 return sessionIndex;
118 * @param sessionIndex session index to be set
121 public void setSessionIndex(String sessionIndex) { argument
122 this.sessionIndex = sessionIndex;
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/
H A DFSSession.java50 private String sessionIndex = null; field in class:FSSession
113 return sessionIndex;
118 * @param sessionIndex session index to be set
121 public void setSessionIndex(String sessionIndex) { argument
122 this.sessionIndex = sessionIndex;
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DAuthnStatementImpl.java87 private String sessionIndex = null; field in class:AuthnStatementImpl
150 sessionIndex = ((Attr)att).getValue().trim();
337 return sessionIndex;
354 sessionIndex = value;
449 if (sessionIndex != null && sessionIndex.trim().length() != 0) {
450 result.append(" SessionIndex=\"").append(sessionIndex).append("\"");
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DAuthnStatementImpl.java87 private String sessionIndex = null; field in class:AuthnStatementImpl
150 sessionIndex = ((Attr)att).getValue().trim();
337 return sessionIndex;
354 sessionIndex = value;
449 if (sessionIndex != null && sessionIndex.trim().length() != 0) {
450 result.append(" SessionIndex=\"").append(sessionIndex).append("\"");
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/csharpsource/Fedlet/Fedlet/source/Saml2/
H A DLogoutRequest.cs115 string sessionIndex = null;
122 sessionIndex = parameters[Saml2Constants.SessionIndex];
128 if (String.IsNullOrEmpty(sessionIndex))
171 rawXml.Append(" <saml:SessionIndex xmlns:saml=\"urn:oasis:names:tc:SAML:2.0:assertion\">" + sessionIndex + "</saml:SessionIndex>");
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/
H A DFSAuthenticationStatement.java66 protected String sessionIndex = null; field in class:FSAuthenticationStatement
194 sessionIndex =
302 return sessionIndex;
308 * @param sessionIndex the value of <code>SessionIndex</code> attribute.
311 public void setSessionIndex(String sessionIndex){ argument
312 this.sessionIndex = sessionIndex;
443 if (sessionIndex != null) {
445 .append(sessionIndex).append("\" ");
H A DFSLogoutNotification.java74 protected String sessionIndex; field in class:FSLogoutNotification
191 if (sessionIndex != null) {
199 sessionIndex = XMLUtils.getElementValue((Element) child);
499 if ((sessionIndex != null) && sessionIndex.length() != 0){
502 append(">").append(sessionIndex).append("</").
592 return sessionIndex;
598 * @param sessionIndex value of <code>SessionIndex</code> attribute.
601 public void setSessionIndex(String sessionIndex) { argument
602 this.sessionIndex
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/
H A DFSAuthenticationStatement.java66 protected String sessionIndex = null; field in class:FSAuthenticationStatement
194 sessionIndex =
302 return sessionIndex;
308 * @param sessionIndex the value of <code>SessionIndex</code> attribute.
311 public void setSessionIndex(String sessionIndex){ argument
312 this.sessionIndex = sessionIndex;
443 if (sessionIndex != null) {
445 .append(sessionIndex).append("\" ");
H A DFSLogoutNotification.java77 protected String sessionIndex; field in class:FSLogoutNotification
194 if (sessionIndex != null) {
202 sessionIndex = XMLUtils.getElementValue((Element) child);
502 if ((sessionIndex != null) && sessionIndex.length() != 0){
505 append(">").append(sessionIndex).append("</").
595 return sessionIndex;
601 * @param sessionIndex value of <code>SessionIndex</code> attribute.
604 public void setSessionIndex(String sessionIndex) { argument
605 this.sessionIndex
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/logout/
H A DFSSingleLogoutHandler.java93 private String sessionIndex = ""; field in class:FSSingleLogoutHandler
172 * @param sessionIndex to be sent as part of logout message
182 String sessionIndex,
194 this.sessionIndex = sessionIndex;
303 this.sessionIndex = (String)providerMap.get(
329 sessionManager.getSessionList(userID), sessionIndex);
368 sessionIndex,
385 userID, metaAlias, sessionIndex, request, response);
398 userID, metaAlias, sessionIndex, reques
177 handleSingleLogout( HttpServletResponse response, HttpServletRequest request, FSSessionPartner currentSessionProvider, String userID, String sessionIndex, boolean isWMLAgent, Object ssoToken) argument
1167 doIDPProxySoapProfile( HttpServletRequest request, HttpServletResponse response, FSSessionPartner currentSessionProvider, String userID, String sessionIndex, Object ssoToken) argument
1206 createSingleLogoutRequest( FSAccountFedInfo acctInfo, String sessionIndex) argument
1356 processHttpSingleLogoutRequest( HttpServletResponse response, HttpServletRequest request, FSLogoutNotification reqLogout, FSSessionPartner currentSessionProvider, String userID, Object ssoToken, String sourceEntityId, String sessionIndex, boolean isWMLAgent, String relayState, String isSourceIDP) argument
1490 processSingleLogoutRequest( FSLogoutNotification reqLogout, FSSessionPartner currentSessionProvider, String userID, String sourceEntityId, String sessionIndex, boolean isWMLAgent, String isSourceIDP) argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/logout/
H A DFSSingleLogoutHandler.java93 private String sessionIndex = ""; field in class:FSSingleLogoutHandler
172 * @param sessionIndex to be sent as part of logout message
182 String sessionIndex,
194 this.sessionIndex = sessionIndex;
303 this.sessionIndex = (String)providerMap.get(
329 sessionManager.getSessionList(userID), sessionIndex);
368 sessionIndex,
385 userID, metaAlias, sessionIndex, request, response);
398 userID, metaAlias, sessionIndex, reques
177 handleSingleLogout( HttpServletResponse response, HttpServletRequest request, FSSessionPartner currentSessionProvider, String userID, String sessionIndex, boolean isWMLAgent, Object ssoToken) argument
1167 doIDPProxySoapProfile( HttpServletRequest request, HttpServletResponse response, FSSessionPartner currentSessionProvider, String userID, String sessionIndex, Object ssoToken) argument
1206 createSingleLogoutRequest( FSAccountFedInfo acctInfo, String sessionIndex) argument
1356 processHttpSingleLogoutRequest( HttpServletResponse response, HttpServletRequest request, FSLogoutNotification reqLogout, FSSessionPartner currentSessionProvider, String userID, Object ssoToken, String sourceEntityId, String sessionIndex, boolean isWMLAgent, String relayState, String isSourceIDP) argument
1490 processSingleLogoutRequest( FSLogoutNotification reqLogout, FSSessionPartner currentSessionProvider, String userID, String sourceEntityId, String sessionIndex, boolean isWMLAgent, String isSourceIDP) argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/csharpsource/Fedlet/Fedlet/source/Saml2/
H A DLogoutRequest.cs119 string sessionIndex = null;
126 sessionIndex = parameters[Saml2Constants.SessionIndex];
132 if (String.IsNullOrEmpty(sessionIndex))
175 rawXml.Append(" <saml:SessionIndex xmlns:saml=\"urn:oasis:names:tc:SAML:2.0:assertion\">" + sessionIndex + "</saml:SessionIndex>");

Completed in 43 milliseconds

123