Package sk.ipesoft.d2000.d2japi
Interface AuditOperationCommon
-
- All Known Subinterfaces:
AuditResourceGroupOperation,AuditUserOperation
public interface AuditOperationCommonCommon properties of audited operation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetCommentText()Get additional text information.java.lang.StringgetComputerName()Get name of the computer that performed the action.java.lang.StringgetFullConfigXml()Get complete contents of XML document, that can be exported for further processing.java.util.DategetLogTime()Get timestamp, when the logged operation occured.java.lang.StringgetProcessName()Get name of the process that performed the action.java.lang.StringgetSecurityInfo()Get additional text information about security tokens involved in the action.intgetSerialNumber()Get serial number of the logged item in group of logged items with the samewriteTimetimestamp.intgetUserId()Get HOBJ of the D2000 object of type user.java.lang.StringgetUserName()Get name of the D2000 object of type user.java.util.DategetWriteTime()Get timestamp, when the logged item has been written to the database.longgetWriteTimeMilliseconds()Get timestamp, when the logged item has been written to the database in milliseconds since epoch.booleanisSuccessful()Get information on whether the operation was successful.
-
-
-
Method Detail
-
getCommentText
java.lang.String getCommentText()
Get additional text information.- Returns:
- additional text information
-
getComputerName
java.lang.String getComputerName()
Get name of the computer that performed the action.- Returns:
- name of the computer that performed the action
-
getFullConfigXml
java.lang.String getFullConfigXml()
Get complete contents of XML document, that can be exported for further processing.- Returns:
- contents of XML document
-
getLogTime
java.util.Date getLogTime()
Get timestamp, when the logged operation occured.- Returns:
- timestamp of the operation
-
getProcessName
java.lang.String getProcessName()
Get name of the process that performed the action.- Returns:
- name of the process that performed the action
-
getSecurityInfo
java.lang.String getSecurityInfo()
Get additional text information about security tokens involved in the action.- Returns:
- text information about security tokens involved in the action
-
getSerialNumber
int getSerialNumber()
Get serial number of the logged item in group of logged items with the samewriteTimetimestamp. It is a part of logged item's unique key.- Returns:
- serial number of the logged item.
-
getUserId
int getUserId()
Get HOBJ of the D2000 object of type user.- Returns:
- HOBJ
-
getUserName
java.lang.String getUserName()
Get name of the D2000 object of type user.- Returns:
- username
-
getWriteTime
java.util.Date getWriteTime()
Get timestamp, when the logged item has been written to the database. It is a part of logged item's unique key.- Returns:
- timestamp, when the item has been written to the database
-
getWriteTimeMilliseconds
long getWriteTimeMilliseconds()
Get timestamp, when the logged item has been written to the database in milliseconds since epoch. It is a part of logged item's unique key.- Returns:
- timestamp, when the item has been written to the database in milliseconds since epoch
-
isSuccessful
boolean isSuccessful()
Get information on whether the operation was successful.- Returns:
- true if the operation was successful
-
-