io.coodoo.framework.jpa.boundary.RevisionUser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of coodoo-jpa-essentials Show documentation
Show all versions of coodoo-jpa-essentials Show documentation
Essential JPA entities and functionality
package io.coodoo.framework.jpa.boundary;
/**
* To get the user informations related to a JPA event
*
*
* This interface has to get implemented as a @Stateless EJB
*
* @author coodoo GmbH (coodoo.io)
*/
public interface RevisionUser {
/**
* The technical reference to the user
*
* @return a numerical ID
*/
public Long getUserId();
}