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

com.avaje.ebeaninternal.server.changelog.DefaultChangeLogPrepare Maven / Gradle / Ivy

There is a newer version: 8.1.1
Show newest version
package com.avaje.ebeaninternal.server.changelog;

import com.avaje.ebean.event.changelog.ChangeLogPrepare;
import com.avaje.ebean.event.changelog.ChangeSet;

/**
 * Placeholder/default implementation that does not do anything.
 * 

* Generally an implementation should be provided that reads context * information such as user id and user ip address etc and sets that * on the changeSet. *

*/ public class DefaultChangeLogPrepare implements ChangeLogPrepare { /** * Just return true to send change set through to the logger. */ @Override public boolean prepare(ChangeSet changeSet) { return true; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy