Searched refs:cookieArray (Results 1 - 4 of 4) sorted by relevance

/forgerock/openam-v13/openam-authentication/openam-auth-msisdn/src/main/java/com/sun/identity/authentication/modules/msisdn/
H A DMSISDN.java319 Cookie cookieArray[] = req.getCookies();
320 if (cookieArray != null) {
321 for (int i = 0; i < cookieArray.length; i++) {
322 String cookieName = cookieArray[i].getName();
325 msisdnNumber = cookieArray[i].getValue();
/forgerock/openam/openam-authentication/openam-auth-msisdn/src/main/java/com/sun/identity/authentication/modules/msisdn/
H A DMSISDN.java319 Cookie cookieArray[] = req.getCookies();
320 if (cookieArray != null) {
321 for (int i = 0; i < cookieArray.length; i++) {
322 String cookieName = cookieArray[i].getName();
325 msisdnNumber = cookieArray[i].getValue();
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/login/
H A DFSPreLogin.java316 * @param cookieArray Array of cookies.
320 private Map getCookieMap(Cookie[] cookieArray) { argument
322 if (cookieArray != null) {
323 for(int i = 0; i < cookieArray.length; i++) {
324 cookieMap.put(cookieArray[i].getName(),
325 cookieArray[i].getValue());
328 + cookieArray[i].getName() + " and value "
329 + cookieArray[i].getValue());
539 Cookie cookieArray[] = CookieUtils.getCookieArrayFromReq(request);
554 Map cookieMap = getCookieMap(cookieArray);
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/login/
H A DFSPreLogin.java316 * @param cookieArray Array of cookies.
320 private Map getCookieMap(Cookie[] cookieArray) { argument
322 if (cookieArray != null) {
323 for(int i = 0; i < cookieArray.length; i++) {
324 cookieMap.put(cookieArray[i].getName(),
325 cookieArray[i].getValue());
328 + cookieArray[i].getName() + " and value "
329 + cookieArray[i].getValue());
539 Cookie cookieArray[] = CookieUtils.getCookieArrayFromReq(request);
554 Map cookieMap = getCookieMap(cookieArray);
[all...]

Completed in 33 milliseconds