nl.vpro.domain.Accountable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of user-domain Show documentation
Show all versions of user-domain Show documentation
Domain classes and interfaces related to accountability, users and organizations.
package nl.vpro.domain;
import nl.vpro.domain.user.Editor;
/**
* The basic accountability fields like 'last modified by', 'last modified instant' and 'created by'.
*
* @author Michiel Meeuwissen
* @since 5.1
*/
public interface Accountable extends Changeable {
Editor getCreatedBy();
void setCreatedBy(Editor createdBy);
Editor getLastModifiedBy();
void setLastModifiedBy(Editor lastModifiedBy);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy