Package oracle.security.am.plugin
Interface GenericTransportToken
public interface GenericTransportToken
Tranposrt token is used to store the
state data across requests.
In case of HTTP this can be cookies or data
stored in HTTP session.
TCP connections this can be the tokens exchanged for state
-
Method Summary
Modifier and TypeMethodDescriptionint
Token age.Token domain.Name of the token.Value of the tokenVersion of the token.boolean
isSecure()
secure flag used for HTTP cookiesvoid
setMaxAgeInSeconds<wbr>(int maxAgeInSeconds)
sets the max age of the token.void
setSecure<wbr>(boolean isSecure)
void
setTokenDomain<wbr>(String tokenDomain)
sets the domain of the token.void
setTokenValue<wbr>(String tokenValue)
set the secure flag for the token.void
setTokenVersion<wbr>(String tokenVersion)
sets the version of the token.
-
Method Details
-
getTokenName
String getTokenName()Name of the token.- Returns:
-
getTokenVersion
String getTokenVersion()Version of the token.- Returns:
-
getMaxAgeInSeconds
int getMaxAgeInSeconds()Token age.- Returns:
-
isSecure
boolean isSecure()secure flag used for HTTP cookies- Returns:
-
getTokenValue
String getTokenValue()Value of the token- Returns:
-
getTokenDomain
String getTokenDomain()Token domain. this decide the validity of the token in multi domain scenarios.- Returns:
-
setTokenVersion
sets the version of the token.- Parameters:
tokenVersion
-
-
setMaxAgeInSeconds
void setMaxAgeInSeconds<wbr>(int maxAgeInSeconds)sets the max age of the token.- Parameters:
maxAgeInSeconds
-
-
setSecure
void setSecure<wbr>(boolean isSecure)- Parameters:
isSecure
-
-
setTokenValue
set the secure flag for the token.- Parameters:
tokenValue
-
-
setTokenDomain
sets the domain of the token.- Parameters:
tokenDomain
-
-