Package oracle.security.am.plugin.authn
Class OAMAbstractAuthenticationPlugIn
java.lang.Object
oracle.security.am.plugin.OAMAbstractAMPlugin
oracle.security.am.plugin.authn.OAMAbstractAuthenticationPlugIn
- All Implemented Interfaces:
AuthnPluginService
,GenericPluginService
- Direct Known Subclasses:
AbstractAuthenticationPlugIn
public abstract class OAMAbstractAuthenticationPlugIn
extends OAMAbstractAMPlugin
implements AuthnPluginService
Plug-in Interface that will be exposed to the plug-in developers.
All the plug-in implementations should extend
AbstractPlugInService
class.
Plug-ins that needs to handle the resource cleanup should override shutdown(Map < String, Object > OAMEnvironmentContext)
An instance of java.util.Logger
will be available to plug-ins.- Since:
- OAM 11.1.1.2.0
-
Nested Class Summary
Nested classes/interfaces inherited from interface oracle.security.am.plugin.GenericPluginService
GenericPluginService.QueryKey
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract String
abstract Map<String,<wbr>MonitoringData>
plug-in can return monitoring data after plug-in execution is complete.abstract boolean
set the monitoring status for the plug-in.abstract String
abstract int
abstract ExecutionStatus
process<wbr>(AuthenticationContext context)
Authentication plug-ins can access all the data available in theAuthenticationContext
object.abstract void
setMonitoringStatus<wbr>(boolean status)
Methods inherited from class oracle.security.am.plugin.OAMAbstractAMPlugin
getID, getLogger, getMaxWaitIntervel, getPluginConfig, initialize, poweronSelfTest, shutdown
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface oracle.security.am.plugin.GenericPluginService
getID, getLogger, getMaxWaitIntervel, getPluginConfig, initialize, poweronSelfTest, shutdown
-
Constructor Details
-
OAMAbstractAuthenticationPlugIn
public OAMAbstractAuthenticationPlugIn()
-
-
Method Details
-
process
public abstract ExecutionStatus process<wbr>(AuthenticationContext context) throws AuthenticationExceptionDescription copied from interface:AuthnPluginService
Authentication plug-ins can access all the data available in theAuthenticationContext
object. plug-in can set response that will be added to SESSION,request and redirect contexts.PluginAttributeContextType.SESSION
all the attributes that need to be set in the session should be added with this context.PluginAttributeContextType.REQUEST
all the attributes that need to be set in the request context should be added with this context.PluginAttributeContextType.REQUEST
all the attributes that need to be set as a re-direct URL should be added with this context.- Specified by:
process
in interfaceAuthnPluginService
- Parameters:
context
- anAuthenticationContext
object.- Returns:
- the execution status
- Throws:
AuthenticationException
- the authentication exception
-
getDescription
- Specified by:
getDescription
in interfaceGenericPluginService
- Returns:
- the description
-
getMonitoringData
Description copied from interface:GenericPluginService
plug-in can return monitoring data after plug-in execution is complete. Server will log this data.- Specified by:
getMonitoringData
in interfaceGenericPluginService
- Returns:
- the monitoring data
-
getMonitoringStatus
public abstract boolean getMonitoringStatus()Description copied from interface:GenericPluginService
set the monitoring status for the plug-in.- Specified by:
getMonitoringStatus
in interfaceGenericPluginService
- Returns:
- the monitoring status
-
getPluginName
- Specified by:
getPluginName
in interfaceGenericPluginService
- Returns:
- String name of the plug-in.
-
getRevision
public abstract int getRevision()- Specified by:
getRevision
in interfaceGenericPluginService
- Returns:
- the revision
-
setMonitoringStatus
public abstract void setMonitoringStatus<wbr>(boolean status)- Specified by:
setMonitoringStatus
in interfaceGenericPluginService
- Parameters:
status
- the new monitoring status
-