Searched defs:cookieValue (Results 1 - 8 of 8) sorted by relevance

/forgerock/openam-v13/openam-federation/openam-idpdiscovery/src/main/java/com/sun/identity/saml2/idpdiscovery/
H A DCookieReaderServlet.java161 String cookieValue =
163 if (cookieValue != null) {
166 cookieValue);
170 cookieValue);
211 * @param cookieValue the _saml_idp cookie value
218 String cookieValue) {
221 if (cookieValue == null ||
222 cookieValue.trim().length() <= 0) {
248 java.net.URLEncoder.encode(cookieValue, "UTF-8"));
216 appendCookieToReturnURL( String returnURL, String cookieValue) argument
/forgerock/openam/openam-federation/openam-idpdiscovery/src/main/java/com/sun/identity/saml2/idpdiscovery/
H A DCookieReaderServlet.java161 String cookieValue =
163 if (cookieValue != null) {
166 cookieValue);
170 cookieValue);
211 * @param cookieValue the _saml_idp cookie value
218 String cookieValue) {
221 if (cookieValue == null ||
222 cookieValue.trim().length() <= 0) {
248 java.net.URLEncoder.encode(cookieValue, "UTF-8"));
216 appendCookieToReturnURL( String returnURL, String cookieValue) argument
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/util/
H A DCLILogin.java63 String cookieValue = null; field in class:CLILogin
84 return cookieValue;
95 return validateSession(cookieValue);
124 cookieValue = null;
148 cookieValue = cookie.substring(index + 1, index1);
149 if (cookieValue == null)
153 System.out.println("CookieVal = " + cookieValue);
161 cookieValue = convertCookie(cookieValue);
174 private boolean validateSession(String cookieValue) { argument
[all...]
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/util/
H A DCLILogin.java63 String cookieValue = null; field in class:CLILogin
84 return cookieValue;
95 return validateSession(cookieValue);
124 cookieValue = null;
148 cookieValue = cookie.substring(index + 1, index1);
149 if (cookieValue == null)
153 System.out.println("CookieVal = " + cookieValue);
161 cookieValue = convertCookie(cookieValue);
174 private boolean validateSession(String cookieValue) { argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/client/
H A DAuthClientUtils.java469 * @param cookieValue value of cookie
473 public static Cookie createCookie(String cookieValue, String cookieDomain) { argument
476 utilDebug.message("cookieName='{}', cookieValue='{}', cookieDomain='{}'", cookieName, cookieValue,
479 return (createCookie(cookieName,cookieValue,cookieDomain));
563 * <code>cookieValue</code> for the cookie domains specified.
566 * @param cookieValue is the value fo the cookie
570 public static Cookie createCookie(String cookieName, String cookieValue, String cookieDomain) { argument
573 utilDebug.message("cookieName='{}', cookieValue='{}', cookieDomain='{}'", cookieName, cookieValue,
2816 setRedirectBackServerCookie(String cookieName, String cookieValue, HttpServletRequest request, HttpServletResponse response) argument
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/common/
H A DSAML2Utils.java4379 String cookieValue = null;
4430 cookieValue = nameOfValue;
4434 cookie = createCookie(cookieName, cookieValue, domain, path);
4436 if ("LOGOUT".equals(cookieValue)) {
4472 * <code>cookieValue</code> for the cookie domains specified.
4477 * @param cookieValue is the value fo the cookie
4483 String cookieValue,
4488 debug.message("cookieValue : " + cookieValue);
4496 cookie = CookieUtils.newCookie(cookieName, cookieValue,
4482 createCookie(String cookieName, String cookieValue, String cookieDomain, String path) argument
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/client/
H A DAuthClientUtils.java472 * @param cookieValue value of cookie
476 public static Cookie createCookie(String cookieValue, String cookieDomain) { argument
479 utilDebug.message("cookieName='{}', cookieValue='{}', cookieDomain='{}'", cookieName, cookieValue,
482 return (createCookie(cookieName,cookieValue,cookieDomain));
566 * <code>cookieValue</code> for the cookie domains specified.
569 * @param cookieValue is the value fo the cookie
573 public static Cookie createCookie(String cookieName, String cookieValue, String cookieDomain) { argument
576 utilDebug.message("cookieName='{}', cookieValue='{}', cookieDomain='{}'", cookieName, cookieValue,
2823 setRedirectBackServerCookie(String cookieName, String cookieValue, HttpServletRequest request, HttpServletResponse response) argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/common/
H A DSAML2Utils.java4404 String cookieValue = null;
4455 cookieValue = nameOfValue;
4459 cookie = createCookie(cookieName, cookieValue, domain, path);
4461 if ("LOGOUT".equals(cookieValue)) {
4497 * <code>cookieValue</code> for the cookie domains specified.
4502 * @param cookieValue is the value fo the cookie
4508 String cookieValue,
4513 debug.message("cookieValue : " + cookieValue);
4521 cookie = CookieUtils.newCookie(cookieName, cookieValue,
4507 createCookie(String cookieName, String cookieValue, String cookieDomain, String path) argument
[all...]

Completed in 250 milliseconds