Class PresentationState
- java.lang.Object
-
- org.oa4mp.server.api.servlet.storage.PresentationState
-
- All Implemented Interfaces:
edu.uiuc.ncsa.security.servlet.PresentableState
- Direct Known Subclasses:
AbstractAuthorizationServlet.AuthorizedState
,AbstractRegistrationServlet.ClientState
,RFC8628AuthorizationServer.PendingState
public class PresentationState extends Object implements edu.uiuc.ncsa.security.servlet.PresentableState
An object for passing around the state variable and anything else needed.Created by Jeff Gaynor
on 10/25/11 at 10:45 AM
-
-
Constructor Summary
Constructors Constructor Description PresentationState(int state, javax.servlet.http.HttpServletRequest httpServletRequest, javax.servlet.http.HttpServletResponse httpServletResponse)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.servlet.http.HttpServletRequest
getRequest()
javax.servlet.http.HttpServletResponse
getResponse()
int
getState()
void
setResponse(javax.servlet.http.HttpServletResponse response)
void
setState(int state)
-
-
-
Method Detail
-
getState
public int getState()
- Specified by:
getState
in interfaceedu.uiuc.ncsa.security.servlet.PresentableState
-
setState
public void setState(int state)
-
setResponse
public void setResponse(javax.servlet.http.HttpServletResponse response)
-
getRequest
public javax.servlet.http.HttpServletRequest getRequest()
- Specified by:
getRequest
in interfaceedu.uiuc.ncsa.security.servlet.PresentableState
-
getResponse
public javax.servlet.http.HttpServletResponse getResponse()
- Specified by:
getResponse
in interfaceedu.uiuc.ncsa.security.servlet.PresentableState
-
-