com.foreach.across.modules.hibernate.business.AuditableEntity Maven / Gradle / Ivy
/*
* Copyright 2014 the original author or authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.foreach.across.modules.hibernate.business;
import javax.persistence.Column;
import javax.persistence.MappedSuperclass;
import java.util.Date;
/**
* @author Andy Somers
*/
@MappedSuperclass
public abstract class AuditableEntity implements Auditable
{
@Column(name = "created_by", nullable = true)
private String createdBy;
@Column(name = "created_date", nullable = true)
private Date createdDate;
@Column(name = "last_modified_by", nullable = true)
private String lastModifiedBy;
@Column(name = "last_modified_date", nullable = true)
private Date lastModifiedDate;
@Override
public String getCreatedBy() {
return createdBy;
}
public void setCreatedBy( String createdBy ) {
this.createdBy = createdBy;
}
@Override
public Date getCreatedDate() {
return createdDate;
}
public void setCreatedDate( Date createdDate ) {
this.createdDate = createdDate;
}
@Override
public String getLastModifiedBy() {
return lastModifiedBy;
}
public void setLastModifiedBy( String lastModifiedBy ) {
this.lastModifiedBy = lastModifiedBy;
}
@Override
public Date getLastModifiedDate() {
return lastModifiedDate;
}
public void setLastModifiedDate( Date lastModifiedDate ) {
this.lastModifiedDate = lastModifiedDate;
}
}