Searched defs:sessionIndex (Results 1 - 25 of 34) sorted by relevance

12

/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/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/saml2/profile/
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...]
H A DResponseInfo.java47 private String sessionIndex = null; field in class:ResponseInfo
158 sessionIndex = index;
167 return sessionIndex;
H A DIDPSingleLogout.java983 String sessionIndex = null;
985 sessionIndex = (String)siIter.next();
990 "idpEntityID=" + idpEntityID + ", sessionIndex="
991 + sessionIndex);
994 if (sessionIndex == null) {
997 // one sessionIndex, could be multiple (TODO: need
999 // logout request, it could omit sessionIndex list,
1014 sessionIndex.substring(sessionIndex.length() - 2);
1017 "sessionIndex
1355 destroyTokenAndGenerateStatus( String sessionIndex, Object session, HttpServletRequest request, HttpServletResponse response, boolean cleanUp) argument
[all...]
H A DLogoutUtil.java115 * @param sessionIndex sessionIndex of the Assertion generated by the
143 String sessionIndex,
156 return doLogout(metaAlias, recipientEntityID, extensionsList, logoutEndpoint, relayState, sessionIndex, nameID,
166 String sessionIndex,
195 + "\nsessionIndex=" + sessionIndex);
255 if (sessionIndex != null) {
257 list.add(sessionIndex);
558 static void setSessionIndex(Status status, List sessionIndex) { argument
562 if (sessionIndex !
136 doLogout( String metaAlias, String recipientEntityID, List<EndpointType> recipientSLOList, List extensionsList, String binding, String relayState, String sessionIndex, NameID nameID, HttpServletRequest request, HttpServletResponse response, Map paramsMap, BaseConfigType config) argument
160 doLogout( String metaAlias, String recipientEntityID, List extensionsList, EndpointType logoutEndpoint, String relayState, String sessionIndex, NameID nameID, HttpServletRequest request, HttpServletResponse response, Map paramsMap, BaseConfigType config) argument
[all...]
/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...]
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-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
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...]
H A DResponseInfo.java50 private String sessionIndex = null; field in class:ResponseInfo
168 sessionIndex = index;
177 return sessionIndex;
H A DIDPSingleLogout.java973 String sessionIndex = null;
975 sessionIndex = (String)siIter.next();
980 "idpEntityID=" + idpEntityID + ", sessionIndex="
981 + sessionIndex);
984 if (sessionIndex == null) {
987 // one sessionIndex, could be multiple (TODO: need
989 // logout request, it could omit sessionIndex list,
1004 sessionIndex.substring(sessionIndex.length() - 2);
1007 "sessionIndex
1348 destroyTokenAndGenerateStatus( String sessionIndex, Object session, HttpServletRequest request, HttpServletResponse response, boolean cleanUp) argument
[all...]
/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/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/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/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/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/federation/services/logout/
H A DFSLogoutUtil.java85 * @param sessionIndex Session Index of the user session.
94 String sessionIndex,
100 " for user : " + userID + " SessionIndex = " + sessionIndex);
103 userID, metaAlias, sessionIndex);
112 if (sessionIndex != null &&
216 * @param sessionIndex index of the user's session
222 String sessionIndex)
239 if (sessionIndex != null &&
240 sessionIndex.equals(sessionObj.getSessionIndex()))
450 * including <code>sessionIndex</cod
91 destroyPrincipalSession( String userID, String metaAlias, String sessionIndex, HttpServletRequest request, HttpServletResponse response) argument
219 getSessionObjectList( String userDn, String metaAlias, String sessionIndex) argument
650 getLogoutGETProviders( String userID, String entityId, String sessionIndex, String realm, String metaAlias) argument
[all...]
/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/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/logout/
H A DFSLogoutUtil.java85 * @param sessionIndex Session Index of the user session.
94 String sessionIndex,
100 " for user : " + userID + " SessionIndex = " + sessionIndex);
103 userID, metaAlias, sessionIndex);
112 if (sessionIndex != null &&
216 * @param sessionIndex index of the user's session
222 String sessionIndex)
239 if (sessionIndex != null &&
240 sessionIndex.equals(sessionObj.getSessionIndex()))
450 * including <code>sessionIndex</cod
91 destroyPrincipalSession( String userID, String metaAlias, String sessionIndex, HttpServletRequest request, HttpServletResponse response) argument
219 getSessionObjectList( String userDn, String metaAlias, String sessionIndex) argument
650 getLogoutGETProviders( String userID, String entityId, String sessionIndex, String realm, String metaAlias) argument
[all...]

Completed in 60 milliseconds

12