Package oracle.security.am.plugin.impl
Class AbstractPluginContext
java.lang.Object
oracle.security.am.plugin.impl.AbstractPluginContext
- All Implemented Interfaces:
PluginAttribute
,PluginContext
- Direct Known Subclasses:
AbstractAuthnContext
-
Field Summary
Fields inherited from interface oracle.security.am.plugin.PluginAttribute
KEY_TAG
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
addErrorCode<wbr>(oracle.security.am.common.utilities.constant.ErrorCode errorCode)
Adds an error code to the list of errors.void
addException<wbr>(Exception exception)
Adds an exception to the list.void
addResponse<wbr>(PluginResponse response)
Add a response to the context.returns all the responses configured.gets the client IP address.returns theClientProfile
object that contains the client specific attributes.oracle.security.am.common.utilities.constant.ErrorCode
returns the error code for the last error that occured during the execution.Returns the list of exceptions encountered during the processing.returns the identity store context.getObjectAttribute<wbr>(String atrName)
This method returns the object attribute specified by the attribute name parameter.Returns the Object attribute map.getResponse<wbr>(PluginAttributeContextType type, String name)
returns the attributes for the target context and the name.getResponses<wbr>(PluginAttributeContextType type)
returns all the attributes for the target context.returns the OAM session object.getStringAttribute<wbr>(String atrName)
This method gives the String attribute specified by the attribute name parameter.Retuns the string attribute map.Transport context encapsulate the transport related handling in the request object.void
removeResponse<wbr>(PluginAttributeContextType type)
Removes the response of the specified typevoid
removeResponse<wbr>(PluginAttributeContextType type, String name)
Removes the response of the specified type and namevoid
setObjectAttribute<wbr>(String attrName, Object attrValue)
This method sets a Object attribute specified by the attribute name parameter and value.void
setStringAttribute<wbr>(String attrName, String attrValue)
This method sets a String attribute specified by the attribute name parameter and value.Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface oracle.security.am.plugin.PluginAttribute
fromString, getKeyName, getObjName, setKeyName, toStringForm
Methods inherited from interface oracle.security.am.plugin.PluginContext
deleteStateAttribute, getAction, getAllStateAttributes, getImplType, getStartingStep, getStateAttribute, setAction, setStartingStep, setStateAttribute
-
Constructor Details
-
AbstractPluginContext
public AbstractPluginContext()
-
-
Method Details
-
addErrorCode
public void addErrorCode<wbr>(oracle.security.am.common.utilities.constant.ErrorCode errorCode)Description copied from interface:PluginContext
Adds an error code to the list of errors. Error code will be translated to a fixed set of messages that will be displayed to the user if needed.- Specified by:
addErrorCode
in interfacePluginContext
- Parameters:
errorCode
- the error code
-
addException
Description copied from interface:PluginContext
Adds an exception to the list.- Specified by:
addException
in interfacePluginContext
- Parameters:
exception
- the exception
-
addResponse
Description copied from interface:PluginContext
Add a response to the context. PluginResponse object need to be defined to set the context to which the attribute should be added.- Specified by:
addResponse
in interfacePluginContext
- Parameters:
response
-PluginResponse
object
-
getAllResponses
Description copied from interface:PluginContext
returns all the responses configured.- Specified by:
getAllResponses
in interfacePluginContext
- Returns:
PluginResponse
object
-
getErrorCode
public oracle.security.am.common.utilities.constant.ErrorCode getErrorCode()Description copied from interface:PluginContext
returns the error code for the last error that occured during the execution.- Specified by:
getErrorCode
in interfacePluginContext
- Returns:
- the error code
-
getExceptionList
Description copied from interface:PluginContext
Returns the list of exceptions encountered during the processing.- Specified by:
getExceptionList
in interfacePluginContext
- Returns:
- the exception list
-
getClientIPAddress
Description copied from interface:PluginContext
gets the client IP address. For HTTP protocol it will be the IP address of the browser.- Specified by:
getClientIPAddress
in interfacePluginContext
- Returns:
- IPAddress a String value;
-
getClientProfile
Description copied from interface:PluginContext
returns theClientProfile
object that contains the client specific attributes.- Specified by:
getClientProfile
in interfacePluginContext
- Returns:
- the client profile
-
getIdentityStoreContext
Description copied from interface:PluginContext
returns the identity store context.- Specified by:
getIdentityStoreContext
in interfacePluginContext
- Returns:
- the identity store context
-
getObjectAttribute
Description copied from interface:PluginContext
This method returns the object attribute specified by the attribute name parameter. All the data in the plug-in context will be stored in Object Map or String map and the data manipulation and access will be done using the get*Attribute, set*Attribute methods.- Specified by:
getObjectAttribute
in interfacePluginContext
- Parameters:
atrName
-String
attribute name value.- Returns:
- the object attribute
-
getObjectMap
Description copied from interface:PluginContext
Returns the Object attribute map.- Specified by:
getObjectMap
in interfacePluginContext
- Returns:
- the object map
-
getStringAttribute
Description copied from interface:PluginContext
This method gives the String attribute specified by the attribute name parameter. All the data in the plug-in context will be stored in Object Map or String map and the data manipulation and access will be done using the get*Attribute, set*Attribute methods.- Specified by:
getStringAttribute
in interfacePluginContext
- Parameters:
atrName
-String
attribute name value.- Returns:
- the string attribute
-
getStringMap
Description copied from interface:PluginContext
Retuns the string attribute map.- Specified by:
getStringMap
in interfacePluginContext
- Returns:
-
setObjectAttribute
Description copied from interface:PluginContext
This method sets a Object attribute specified by the attribute name parameter and value. All the data in the plug-in context will be stored in Object Map or String map and the data manipulation and access will be done using the get*Attribute, set*Attribute methods.- Specified by:
setObjectAttribute
in interfacePluginContext
- Parameters:
attrName
- the attr nameattrValue
- the attr value
-
setStringAttribute
Description copied from interface:PluginContext
This method sets a String attribute specified by the attribute name parameter and value. All the data in the plug-in context will be stored in Object Map or String map and the data manipulation and access will be done using the get*Attribute, set*Attribute methods.- Specified by:
setStringAttribute
in interfacePluginContext
- Parameters:
attrName
- the attr nameattrValue
- the attr value
-
getSession
Description copied from interface:PluginContext
returns the OAM session object. OAMSession can be used to access session attributes.- Specified by:
getSession
in interfacePluginContext
- Returns:
OAMSession
object.
-
getTransportContext
Description copied from interface:PluginContext
Transport context encapsulate the transport related handling in the request object.- Specified by:
getTransportContext
in interfacePluginContext
- Returns:
- a object.
-
getResponses
Description copied from interface:PluginContext
returns all the attributes for the target context.- Specified by:
getResponses
in interfacePluginContext
- Returns:
List<PluginResponse>
-
getResponse
Description copied from interface:PluginContext
returns the attributes for the target context and the name.- Specified by:
getResponse
in interfacePluginContext
- Returns:
PluginResponse
-
removeResponse
Description copied from interface:PluginContext
Removes the response of the specified type- Specified by:
removeResponse
in interfacePluginContext
-
removeResponse
Description copied from interface:PluginContext
Removes the response of the specified type and name- Specified by:
removeResponse
in interfacePluginContext
-