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 String
action()
The database activity that caused creation of this record.int
actionID()
The ID of the associated AuditRecord object.String
entityID()
The ID of the entity that changed.String
entityType()
The type of the entity that changed.String
fieldName()
The database definition name of field that was changed.Object
newValue()
The new value after the change.Object
oldValue()
The value before the change.String
propertyName()
The custom label for the field that was changed.int
sessionID()
The Quality Center Session ID under which the action was performed.String
tableName()
The database table in which the change was recorded.String
time()
The time stamp of the change according to the database server clock.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
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
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
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
Object oldValue()
The value before the change.
Getter method for the COM property "OldValue"
- Returns:
- Returns a value of type java.lang.Object
-
newValue
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
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
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
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
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
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
-
-