com.basilv.examples.hibernate
Interface Auditable

All Known Implementing Classes:
BaseDomainObject, Message

public interface Auditable

Represents an object with the standard audit fields to track creation and modification information.

Author:
basil.vandegriend

Method Summary
 Timestamp getCreateTimestamp()
           
 String getCreateUserId()
           
 Timestamp getUpdateTimestamp()
           
 String getUpdateUserId()
           
 void setCreateTimestamp(Timestamp createTimestamp)
           
 void setCreateUserId(String createUserId)
           
 void setUpdateTimestamp(Timestamp updateTimestamp)
           
 void setUpdateUserId(String updateUserId)
           
 

Method Detail

getCreateTimestamp

Timestamp getCreateTimestamp()

setCreateTimestamp

void setCreateTimestamp(Timestamp createTimestamp)

getCreateUserId

String getCreateUserId()

setCreateUserId

void setCreateUserId(String createUserId)

getUpdateTimestamp

Timestamp getUpdateTimestamp()

setUpdateTimestamp

void setUpdateTimestamp(Timestamp updateTimestamp)

getUpdateUserId

String getUpdateUserId()

setUpdateUserId

void setUpdateUserId(String updateUserId)


Java Examples available from http://www.basilv.com/psd/software Copyright © 2009 by Basil Vandegriend. All Rights Reserved.