Interface IAuditProperty
-
- All Superinterfaces:
com4j.Com4jObject
,IBaseField
,IObjectLockingSupport
public interface IAuditProperty extends IBaseField
Represents a property associated with an AuditRecord.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
action()
The database activity that caused creation of this record.int
actionID()
The ID of the associated AuditRecord object.java.lang.String
entityID()
The ID of the entity that changed.java.lang.String
entityType()
The type of the entity that changed.java.lang.String
fieldName()
The database definition name of field that was changed.java.lang.Object
newValue()
The new value after the change.java.lang.Object
oldValue()
The value before the change.java.lang.String
propertyName()
The custom label for the field that was changed.int
sessionID()
The Quality Center Session ID under which the action was performed.java.lang.String
tableName()
The database table in which the change was recorded.java.lang.String
time()
The time stamp of the change according to the database server clock.java.lang.String
userName()
The username of the user who performed the action.-
Methods inherited from interface com4j.Com4jObject
advise, dispose, equals, getComThread, getIUnknownPointer, getPointer, getPtr, hashCode, is, queryInterface, setName, toString
-
Methods inherited from interface step.repository.alm.otaclient.IBaseField
autoPost, autoPost, field, field, id, modified, post, refresh, undo, virtual
-
Methods inherited from interface step.repository.alm.otaclient.IObjectLockingSupport
isLocked, lockObject, unLockObject
-
-
-
-
Method Detail
-
tableName
java.lang.String tableName()
The database table in which the change was recorded.
Getter method for the COM property "TableName"
- Returns:
- Returns a value of type java.lang.String
-
fieldName
java.lang.String fieldName()
The database definition name of field that was changed.
Getter method for the COM property "FieldName"
- Returns:
- Returns a value of type java.lang.String
-
propertyName
java.lang.String propertyName()
The custom label for the field that was changed.
Getter method for the COM property "PropertyName"
- Returns:
- Returns a value of type java.lang.String
-
oldValue
java.lang.Object oldValue()
The value before the change.
Getter method for the COM property "OldValue"
- Returns:
- Returns a value of type java.lang.Object
-
newValue
java.lang.Object newValue()
The new value after the change.
Getter method for the COM property "NewValue"
- Returns:
- Returns a value of type java.lang.Object
-
actionID
int actionID()
The ID of the associated AuditRecord object.
Getter method for the COM property "ActionID"
- Returns:
- Returns a value of type int
-
action
java.lang.String action()
The database activity that caused creation of this record. For example, INSERT, UPDATE, or DELETE.
Getter method for the COM property "Action"
- Returns:
- Returns a value of type java.lang.String
-
userName
java.lang.String userName()
The username of the user who performed the action.
Getter method for the COM property "UserName"
- Returns:
- Returns a value of type java.lang.String
-
sessionID
int sessionID()
The Quality Center Session ID under which the action was performed.
Getter method for the COM property "SessionID"
- Returns:
- Returns a value of type int
-
time
java.lang.String time()
The time stamp of the change according to the database server clock.
Getter method for the COM property "Time"
- Returns:
- Returns a value of type java.lang.String
-
entityType
java.lang.String entityType()
The type of the entity that changed. For example, BUG, REQ.
Getter method for the COM property "EntityType"
- Returns:
- Returns a value of type java.lang.String
-
entityID
java.lang.String entityID()
The ID of the entity that changed.
Getter method for the COM property "EntityID"
- Returns:
- Returns a value of type java.lang.String
-
-