Class RAuditItem
- java.lang.Object
-
- com.evolveum.midpoint.repo.sql.data.audit.RAuditItem
-
- All Implemented Interfaces:
EntityState
@Entity public class RAuditItem extends Object implements EntityState
-
-
Field Summary
Fields Modifier and Type Field Description static String
COLUMN_RECORD_ID
static String
TABLE_NAME
-
Constructor Summary
Constructors Constructor Description RAuditItem()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getChangedItemPath()
RAuditEventRecord
getRecord()
Long
getRecordId()
int
hashCode()
Boolean
isTransient()
Tells hibernateInterceptor
that entity is transient, so that hibernate session doesn't need to verify it using select queries.void
setChangedItemPath(String changedItemPath)
void
setRecord(RAuditEventRecord record)
void
setRecordId(Long recordId)
void
setTransient(Boolean trans)
-
-
-
Field Detail
-
TABLE_NAME
public static final String TABLE_NAME
- See Also:
- Constant Field Values
-
COLUMN_RECORD_ID
public static final String COLUMN_RECORD_ID
- See Also:
- Constant Field Values
-
-
Method Detail
-
isTransient
public Boolean isTransient()
Description copied from interface:EntityState
Tells hibernateInterceptor
that entity is transient, so that hibernate session doesn't need to verify it using select queries.- Specified by:
isTransient
in interfaceEntityState
- Returns:
- true if entity is transient
-
setTransient
public void setTransient(Boolean trans)
- Specified by:
setTransient
in interfaceEntityState
-
getRecord
public RAuditEventRecord getRecord()
-
getRecordId
public Long getRecordId()
-
getChangedItemPath
public String getChangedItemPath()
-
setRecord
public void setRecord(RAuditEventRecord record)
-
setRecordId
public void setRecordId(Long recordId)
-
setChangedItemPath
public void setChangedItemPath(String changedItemPath)
-
-