Class AbstractAuditable<U>
- java.lang.Object
-
- org.activiti.cloud.services.auditable.AbstractAuditable<U>
-
-
Field Summary
Fields Modifier and Type Field Description protected UcreatedByprotected DatecreationDateprotected UlastModifiedByprotected DatelastModifiedDate
-
Constructor Summary
Constructors Constructor Description AbstractAuditable()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UgetCreatedBy()DategetCreationDate()UgetLastModifiedBy()DategetLastModifiedDate()voidsetCreatedBy(U createdBy)voidsetCreationDate(Date creationDate)voidsetLastModifiedBy(U lastModifiedBy)voidsetLastModifiedDate(Date lastModifiedDate)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.activiti.cloud.services.auditable.Auditable
copyAuditInfo
-
-
-
-
Method Detail
-
getCreatedBy
public U getCreatedBy()
- Specified by:
getCreatedByin interfaceAuditable<U>
-
setCreatedBy
public void setCreatedBy(U createdBy)
- Specified by:
setCreatedByin interfaceAuditable<U>
-
getCreationDate
public Date getCreationDate()
- Specified by:
getCreationDatein interfaceAuditable<U>
-
setCreationDate
public void setCreationDate(Date creationDate)
- Specified by:
setCreationDatein interfaceAuditable<U>
-
getLastModifiedBy
public U getLastModifiedBy()
- Specified by:
getLastModifiedByin interfaceAuditable<U>
-
setLastModifiedBy
public void setLastModifiedBy(U lastModifiedBy)
- Specified by:
setLastModifiedByin interfaceAuditable<U>
-
getLastModifiedDate
public Date getLastModifiedDate()
- Specified by:
getLastModifiedDatein interfaceAuditable<U>
-
setLastModifiedDate
public void setLastModifiedDate(Date lastModifiedDate)
- Specified by:
setLastModifiedDatein interfaceAuditable<U>
-
-