| java.lang.Object | |
| ↳ | vars.knowledgebase.jpa.HistoryImpl | 
CREATE TABLE HISTORY ( ID BIGINT NOT NULL, CONCEPTDELEGATEID_FK BIGINT, APPROVALDTG TIMESTAMP, CREATIONDTG TIMESTAMP, CREATORNAME VARCHAR(50), APPROVERNAME VARCHAR(50), FIELD VARCHAR(50), OLDVALUE VARCHAR(2048), NEWVALUE VARCHAR(2048), ACTION VARCHAR(16), COMMENT VARCHAR(2048), REJECTED SMALLINT NOT NULL, CONSTRAINT PK_HISTORY PRIMARY KEY(ID) ) GO CREATE INDEX IDX_CONCEPTDELEGATE2 ON HISTORY(CONCEPTDELEGATEID_FK) GO
| 
  [Expand]
   Inherited Constants  | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
   From interface
vars.knowledgebase.History
 | |||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Gets the action of this  
  
  History as a String. | |||||||||||
Method description 
  
   | |||||||||||
Not for Developer use. 
  
   | |||||||||||
Gets the creation date of this  
  
  History. | |||||||||||
Gets the previous value of the field name from the description of this  
  
  History. | |||||||||||
Method description 
  
   | |||||||||||
Method description 
  
   | |||||||||||
Gets the date that this  
  
  History was processed (i.e. | |||||||||||
Determines whether the action of this  
  
  History is an add. | |||||||||||
Gets whether this  
  
  History has been approved. | |||||||||||
Determines whether the action of this  
  
  History is a delete. | |||||||||||
Determines whether this  
  
  History was rejected. | |||||||||||
Determines whether the action of this  
  
  History is a
 replace. | |||||||||||
Method description 
  
   | |||||||||||
Method description 
  
   | |||||||||||
Method description 
  
   | |||||||||||
Sets the Date the user created this  
  
  History. | |||||||||||
Sets the name of the user that created this  
  
  History | |||||||||||
Method description 
  
   | |||||||||||
Method description 
  
   | |||||||||||
Method description 
  
   | |||||||||||
Sets the approval Date this  
  
  History. | |||||||||||
| 
  [Expand]
   Inherited Methods  | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
   
From class
  java.lang.Object
 | |||||||||||
   
From interface
  vars.VARSObject
 | |||||||||||
   
From interface
  vars.jpa.JPAEntity
 | |||||||||||
   
From interface
  vars.knowledgebase.History
 | |||||||||||
Gets the action of this History as a String.
History.
Method description
Not for Developer use. This is required for Castor/DAO
Gets the creation date of this History.
History.
Gets the previous value of the field name from the description of this History. This value represents the value of the field name before the action occurred.
History.
Method description
Method description
Gets the date that this History was processed (i.e. approved
 or rejected.
History.
Determines whether the action of this History is an add.
true if the action of this History
 is an add.
Gets whether this History has been approved.
true if this History has been
 approved.
Determines whether the action of this History is a delete.
true if the action of this History
 is a delete.
Determines whether this History was rejected.
true if this History was rejected.
Determines whether the action of this History is a
 replace.
true if the action of this History
 is an replace.
Method description
Method description
Method description
Sets the Date the user created this History. Necessary for Castor. Developers should use appropriate constructor.
| creationDate | The Date the user created this History. | 
        
|---|
Sets the name of the user that created this History.
| creatorName | The name of the user that created this History | 
        
|---|
Method description
Method description
Method description
Sets the approval Date this History. DO NOT CALL THIS DIRECTLY! USE approve() INSTEAD.
| approvalDate | The approval Data of this History. | 
        
|---|