Package org.apereo.cas.web
Interface BrowserSessionStorage
-
- All Superinterfaces:
java.io.Serializable
public interface BrowserSessionStorage extends java.io.SerializableThis isBrowserSessionStorage.- Since:
- 6.4.0
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringKEY_SESSION_STORAGEsession storage key to track data.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDestinationUrl()Gets destination url.java.lang.StringgetPayload()Gets payload.voidsetDestinationUrl(java.lang.String url)Sets destination url.
-
-
-
Field Detail
-
KEY_SESSION_STORAGE
static final java.lang.String KEY_SESSION_STORAGE
session storage key to track data.- See Also:
- Constant Field Values
-
-
Method Detail
-
getPayload
java.lang.String getPayload()
Gets payload.- Returns:
- the payload
-
getDestinationUrl
java.lang.String getDestinationUrl()
Gets destination url.- Returns:
- the destination url
-
setDestinationUrl
void setDestinationUrl(java.lang.String url)
Sets destination url.- Parameters:
url- the url
-
-