All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nl.vpro.domain.Accountable Maven / Gradle / Ivy

Go to download

Domain classes and interfaces related to accountability, users and organizations.

There is a newer version: 8.3.1
Show newest version
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