Package oracle.security.am.plugin
Interface GenericTransportStore
public interface GenericTransportStore
Transport store stores
the attributes for session state.
-
Method Summary
Modifier and TypeMethodDescriptiongetAttribute<wbr>(String name)
retrieves an attribute store in the session.getData()
get the back-end store object contains the data.getType()
The type should be the type of store used for request cache.boolean
isValid()
Checks whether the session store implementation is valid or not.void
removeAttribute<wbr>(String name)
remove the stored attribute from the session store.void
setAttribute<wbr>(String name, Object value)
Stores an attribute in the server.void
set the back-end store object contains the data.
-
Method Details
-
getAttribute
retrieves an attribute store in the session.- Parameters:
name
-- Returns:
-
setAttribute
Stores an attribute in the server.- Parameters:
name
-value
-
-
removeAttribute
remove the stored attribute from the session store.- Parameters:
name
-
-
isValid
boolean isValid()Checks whether the session store implementation is valid or not. Some transport protocols will not support session store.In that case isValid will be false. Check if the session store is valid before doing any operations.- Returns:
-
getData
Object getData()get the back-end store object contains the data. getData will return the string or a map based on the format in which the data is cached. The caller is supposed to handle data based on the transport store implementation used.- Returns:
-
setData
set the back-end store object contains the data. setData will set the string or a map based on the format in which the data is cached. The caller is supposed to handle data based on the transport store implementation used.- Parameters:
data
-
-
getType
String getType()The type should be the type of store used for request cache. Eg: COOKIE / FORM / BASIC- Returns:
-