Package step.repository.alm.otaclient
Interface IHistoryRecord
-
- All Superinterfaces:
com4j.Com4jObject
- All Known Subinterfaces:
IHistoryRecord2
public interface IHistoryRecord extends com4j.Com4jObject
Represents a single history change.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Date
changeDate()
The change date according to database server.java.lang.String
changer()
The name of the user who made the change.java.lang.String
fieldName()
The name of the changed field.java.lang.Object
itemKey()
Not implemented.java.lang.Object
newValue()
The value after the change.
-
-
-
Method Detail
-
fieldName
java.lang.String fieldName()
The name of the changed field.
Getter method for the COM property "FieldName"
- Returns:
- Returns a value of type java.lang.String
-
changeDate
java.util.Date changeDate()
The change date according to database server.
Getter method for the COM property "ChangeDate"
- Returns:
- Returns a value of type java.util.Date
-
changer
java.lang.String changer()
The name of the user who made the change.
Getter method for the COM property "Changer"
- Returns:
- Returns a value of type java.lang.String
-
newValue
java.lang.Object newValue()
The value after the change.
Getter method for the COM property "NewValue"
- Returns:
- Returns a value of type java.lang.Object
-
itemKey
java.lang.Object itemKey()
Not implemented.
Getter method for the COM property "ItemKey"
- Returns:
- Returns a value of type java.lang.Object
-
-