org.javers.spring.auditable.AuthorProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javers-spring Show documentation
Show all versions of javers-spring Show documentation
JaVers object auditing and diff framework
package org.javers.spring.auditable;
/**
* Should provide a commit author, typically a user name taken from a current user session.
*
*
* Implementation has to be thread-safe.
*
*
* See {@link SpringSecurityAuthorProvider} - implementation for Spring Security
* See {@link CommitPropertiesProvider}
*
* @author Pawel Szymczyk
*/
public interface AuthorProvider {
String provide();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy