Package org.apache.myfaces.tobago.webapp
Class Secret
- java.lang.Object
-
- org.apache.myfaces.tobago.webapp.Secret
-
- All Implemented Interfaces:
Serializable
public final class Secret extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static booleancheck(javax.faces.context.FacesContext facesContext)Checks that the request contains a parameterKEYwhich is equals to a secret value in the session.static voidcreate(javax.servlet.http.HttpSession session)Create a secret attribute in the session.static voidencode(javax.faces.context.FacesContext facesContext, TobagoResponseWriter writer)Encode a hidden field with the secret value from the session.
-
-
-
Method Detail
-
check
public static boolean check(javax.faces.context.FacesContext facesContext)
Checks that the request contains a parameterKEYwhich is equals to a secret value in the session.
-
encode
public static void encode(javax.faces.context.FacesContext facesContext, TobagoResponseWriter writer) throws IOExceptionEncode a hidden field with the secret value from the session.- Throws:
IOException
-
create
public static void create(javax.servlet.http.HttpSession session)
Create a secret attribute in the session. Should usually be called in aHttpSessionListener.
-
-