Class UserSourceProfileKernelWrapper
- java.lang.Object
-
- com.inductiveautomation.ignition.gateway.user.UserSourceProfileKernelWrapper
-
- All Implemented Interfaces:
UserSourceProfileKernel
- Direct Known Subclasses:
AbstractUserSourceProfile
,LockoutTrackingUserSourceProfileKernel
public abstract class UserSourceProfileKernelWrapper extends java.lang.Object implements UserSourceProfileKernel
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getCacheValidationTimeout()
GatewayContext
getContext()
UserSourceManager
getManager()
long
getProfileId()
java.lang.String
getProfileName()
boolean
isLockedOut(java.lang.String user)
boolean
notifyFailedAttempt(java.lang.String user)
void
shutdown()
Called either when the user source has been edited and so it is being restarted, or when the gateway is shutting down.void
startup(UserSourceManager manager)
Called when the user source is created before it is used.
-
-
-
Method Detail
-
getContext
public GatewayContext getContext()
- Specified by:
getContext
in interfaceUserSourceProfileKernel
- Returns:
- the
GatewayContext
in which thisUserSourceProfileKernel
is running
-
getManager
public UserSourceManager getManager()
- Specified by:
getManager
in interfaceUserSourceProfileKernel
- Returns:
- the
UserSourceManager
running in this context
-
getProfileId
public long getProfileId()
- Specified by:
getProfileId
in interfaceUserSourceProfileKernel
- Returns:
- the ID of this user source profile
-
getProfileName
public java.lang.String getProfileName()
- Specified by:
getProfileName
in interfaceUserSourceProfileKernel
- Returns:
- the name of this user source profile
-
getCacheValidationTimeout
public long getCacheValidationTimeout()
- Specified by:
getCacheValidationTimeout
in interfaceUserSourceProfileKernel
- Returns:
- the cache update time-out option
-
isLockedOut
public boolean isLockedOut(java.lang.String user)
- Specified by:
isLockedOut
in interfaceUserSourceProfileKernel
- Parameters:
user
- the username of the user to check- Returns:
- whether or not the user is locked out
-
notifyFailedAttempt
public boolean notifyFailedAttempt(java.lang.String user)
- Specified by:
notifyFailedAttempt
in interfaceUserSourceProfileKernel
- Parameters:
user
- the username of the user who failed to authenticate- Returns:
- whether or not the user is locked out after failing to authenticate
-
startup
public void startup(UserSourceManager manager)
Description copied from interface:UserSourceProfileKernel
Called when the user source is created before it is used.- Specified by:
startup
in interfaceUserSourceProfileKernel
-
shutdown
public void shutdown()
Description copied from interface:UserSourceProfileKernel
Called either when the user source has been edited and so it is being restarted, or when the gateway is shutting down.- Specified by:
shutdown
in interfaceUserSourceProfileKernel
-
-