io.ebeaninternal.server.readaudit.DefaultReadAuditPrepare Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ebean Show documentation
Show all versions of ebean Show documentation
composite of common runtime dependencies for all platforms
package io.ebeaninternal.server.readaudit;
import io.ebean.event.readaudit.ReadAuditPrepare;
import io.ebean.event.readaudit.ReadEvent;
/**
* A placeholder implementation for ReadAuditPrepare.
*
* A real application specific implementation is required to obtain and set
* the user context information on the readEvent bean (like user id).
*
*/
public class DefaultReadAuditPrepare implements ReadAuditPrepare {
@Override
public void prepare(ReadEvent readEvent) {
// do nothing by default.
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy