Package sk.ipesoft.d2000.d2japi
Interface AuditUserOperation
-
- All Superinterfaces:
AuditOperationCommon
public interface AuditUserOperation extends AuditOperationCommon
User operation for auditing purposes. Every logged items has composite unique identifier consisting ofwriteTimeandserialNumber. Second part is neccessary to distinguish two items written to the database within the same milisecond.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AuditUserOperationConfigurationgetFullConfigData()Get configuration of user account after the audited operation has been performed.intgetInvalidLogonCount()Get number of invalid attempts to logon.java.util.DategetLockoutTime()Get timestamp, till when the user account is locked.AuditUserOperationTypegetOperationType()Get type of the operation.-
Methods inherited from interface sk.ipesoft.d2000.d2japi.AuditOperationCommon
getCommentText, getComputerName, getFullConfigXml, getLogTime, getProcessName, getSecurityInfo, getSerialNumber, getUserId, getUserName, getWriteTime, getWriteTimeMilliseconds, isSuccessful
-
-
-
-
Method Detail
-
getOperationType
AuditUserOperationType getOperationType()
Get type of the operation.- Returns:
- type of the operation
-
getInvalidLogonCount
int getInvalidLogonCount()
Get number of invalid attempts to logon.- Returns:
- number of invalid attempts to logon
-
getLockoutTime
java.util.Date getLockoutTime()
Get timestamp, till when the user account is locked.- Returns:
- timestamp, till when the user account is locked
-
getFullConfigData
AuditUserOperationConfiguration getFullConfigData()
Get configuration of user account after the audited operation has been performed.- Returns:
- configuration of user account
-
-