/* * Copyright 2008-2010 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.smilonet.common.entity; import java.io.Serializable; import org.joda.time.DateTime; /** * Interface for auditable entities. Allows storing and retrieving creation and modification information. The changing * instance (typically some user) is to be defined by a generics definition. * * @param <U> the auditing type. Typically some kind of user. * @param <ID> the type of the audited type's identifier * @author Oliver Gierke */ public interface IAuditable<U, ID extends Serializable> { /** * Returns the user who created this entity. * * @return the createdBy */ U getCreatedBy(); /** * Sets the user who created this entity. * * @param createdBy the creating entity to set */ void setCreatedBy(final U createdBy); /** * Returns the creation date of the entity. * * @return the createdDate */ DateTime getCreatedDate(); /** * Sets the creation date of the entity. * * @param creationDate the creation date to set */ void setCreatedDate(final DateTime creationDate); /** * Returns the user who modified the entity lastly. * * @return the lastModifiedBy */ U getLastModifiedBy(); /** * Sets the user who modified the entity lastly. * * @param lastModifiedBy the last modifying entity to set */ void setLastModifiedBy(final U lastModifiedBy); /** * Returns the date of the last modification. * * @return the lastModifiedDate */ DateTime getLastModifiedDate(); /** * Sets the date of the last modification. * * @param lastModifiedDate the date of the last modification to set */ void setLastModifiedDate(final DateTime lastModifiedDate); }