Package oracle.security.am.plugin
Interface GenericTransportHandler
public interface GenericTransportHandler
The
GenericTransportHandler
class.- Since:
- NGAMv1.0
-
Method Summary
Modifier and TypeMethodDescriptiongetAttribute<wbr>(oracle.security.am.common.utilities.constant.CommonAttribute attribute)
Gets the attribute.Iterator<oracle.security.am.common.utilities.constant.CommonAttribute>
Gets the attribute names.Gets the attributes map.String[]
getParameterValues<wbr>(String parameterName)
Gets the parameter values.Gets the properties map.Gets the properties map.The method returns the type of method used to hit the OAM server for access.Gets the request uri.Creates a session store using the attributes stored in the session.Gets the token.Returns the list of tokens those were set using setToken().getTransportSession<wbr>(boolean crate)
Returns the clients useragent informationvoid
setAttribute<wbr>(oracle.security.am.common.utilities.constant.CommonAttribute attribute, Object value)
Sets the attribute.void
setToken<wbr>(GenericTransportToken token, boolean isVersioned)
Sets the token.void
unsetToken<wbr>(String tokenName)
Unset token.void
unsetToken<wbr>(GenericTransportToken token)
Unset token providing the token object
-
Method Details
-
getAttributesMap
Gets the attributes map.- Returns:
- the attributes map
-
getRequestURI
String getRequestURI()Gets the request uri.- Returns:
- the request uri
-
getPropertiesMap
Gets the properties map.- Returns:
- the properties map
-
getPropertiesMap
Gets the properties map.- Returns:
- the properties map
-
getToken
Gets the token.- Parameters:
token
- the transport tokenisVersioned
- if the token is a versioned one- Returns:
- the token
-
setToken
Sets the token.- Parameters:
token
- the transport tokenisVersioned
- if the token is a versioned one
-
getParameterValues
Gets the parameter values.- Parameters:
parameterName
- the parameter name- Returns:
- the parameter values
-
setAttribute
void setAttribute<wbr>(oracle.security.am.common.utilities.constant.CommonAttribute attribute, Object value)Sets the attribute.- Parameters:
name
- the namevalue
- the value
-
getAttribute
Gets the attribute.- Parameters:
name
- the name- Returns:
- the attribute
-
unsetToken
Unset token.- Parameters:
tokenName
- the token name
-
unsetToken
Unset token providing the token object- Parameters:
token
-
-
getAttributeNames
Iterator<oracle.security.am.common.utilities.constant.CommonAttribute> getAttributeNames()Gets the attribute names.- Returns:
- the attribute names
-
getTransportSession
-
getSessionStore
GenericTransportStore getSessionStore()Creates a session store using the attributes stored in the session.- Returns:
SessionStore
object
-
getTransportRequest
Object getTransportRequest() -
getLocale
Locale getLocale() -
getUserAgent
String getUserAgent()Returns the clients useragent information- Returns:
-
getTokens
List<GenericTransportToken> getTokens()Returns the list of tokens those were set using setToken(). -
getRequestMethod
String getRequestMethod()The method returns the type of method used to hit the OAM server for access.- Returns:
- Returns Method with which this request was made to OAM server, for example, GET, POST, PUT etc. The method may return null if the transport handler does not have a notion of access method, say for protocols like NAP.
-