Package com.ebasetech.xi.api.workflow
Interface Audit
public interface Audit
Interface defining the contents of an audit record, as returned by the WorkflowManager
-
Method Summary
Modifier and Type Method Description java.lang.String
getCaller()
Answer the caller string given to the API method that ultimately causes this audit record to be createdint
getJobSequence()
Answer the sequence number of the job associated with an audir recordint
getLevel()
Ge the level of this recordlong
getLogged()
Answer the epoch that relates to the receiver's creation timejava.lang.String
getMessage()
Answer the message in the audit recordint
getNodeEnactmentSequence()
Answer the sequence number of the node enactment associated with an audir recordjava.lang.String
getProcessName()
Answer the name of the process associated with an audir recordint
getProcessVersion()
Answer the version of the process associated with an audir recordjava.lang.String
getReason()
Answer the reason given to the API method that ultimately causes this audit record to be createdjava.lang.String
getSource()
Answer a test string describing the source of the audit record
-
Method Details
-
getProcessName
java.lang.String getProcessName()Answer the name of the process associated with an audir record -
getProcessVersion
int getProcessVersion()Answer the version of the process associated with an audir record -
getJobSequence
int getJobSequence()Answer the sequence number of the job associated with an audir record -
getNodeEnactmentSequence
int getNodeEnactmentSequence()Answer the sequence number of the node enactment associated with an audir record -
getLogged
long getLogged()Answer the epoch that relates to the receiver's creation time -
getSource
java.lang.String getSource()Answer a test string describing the source of the audit record -
getMessage
java.lang.String getMessage()Answer the message in the audit record -
getReason
java.lang.String getReason()Answer the reason given to the API method that ultimately causes this audit record to be created- See Also:
WorkflowManagement
-
getCaller
java.lang.String getCaller()Answer the caller string given to the API method that ultimately causes this audit record to be created- See Also:
WorkflowManagement
-
getLevel
int getLevel()Ge the level of this record
-