Class BasicSavedRequest
- java.lang.Object
-
- com.broadleafcommerce.auth.user.session.BasicSavedRequest
-
- All Implemented Interfaces:
Serializable,org.springframework.security.web.savedrequest.SavedRequest
public class BasicSavedRequest extends Object implements org.springframework.security.web.savedrequest.SavedRequest
Simple implementation of aSavedRequest. This implementation focuses primarily on simply storing the redirectUrl and client id values.- Author:
- Jeff Fischer
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BasicSavedRequest(String redirectUrl)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<javax.servlet.http.Cookie>getCookies()Collection<String>getHeaderNames()List<String>getHeaderValues(String name)List<Locale>getLocales()StringgetMethod()Map<String,String[]>getParameterMap()String[]getParameterValues(String name)StringgetRedirectUrl()
-
-
-
Constructor Detail
-
BasicSavedRequest
public BasicSavedRequest(String redirectUrl)
-
-
Method Detail
-
getRedirectUrl
public String getRedirectUrl()
- Specified by:
getRedirectUrlin interfaceorg.springframework.security.web.savedrequest.SavedRequest
-
getCookies
public List<javax.servlet.http.Cookie> getCookies()
- Specified by:
getCookiesin interfaceorg.springframework.security.web.savedrequest.SavedRequest
-
getMethod
public String getMethod()
- Specified by:
getMethodin interfaceorg.springframework.security.web.savedrequest.SavedRequest
-
getHeaderValues
public List<String> getHeaderValues(String name)
- Specified by:
getHeaderValuesin interfaceorg.springframework.security.web.savedrequest.SavedRequest
-
getHeaderNames
public Collection<String> getHeaderNames()
- Specified by:
getHeaderNamesin interfaceorg.springframework.security.web.savedrequest.SavedRequest
-
getLocales
public List<Locale> getLocales()
- Specified by:
getLocalesin interfaceorg.springframework.security.web.savedrequest.SavedRequest
-
getParameterValues
public String[] getParameterValues(String name)
- Specified by:
getParameterValuesin interfaceorg.springframework.security.web.savedrequest.SavedRequest
-
-