![JAR search and dependency download from the Maven repository](/logo.png)
net.sixpointsix.springboot.datafixture.dummy.DummyDataFixture Maven / Gradle / Ivy
package net.sixpointsix.springboot.datafixture.dummy;
import net.sixpointsix.springboot.datafixture.DataFixture;
/**
* Dummy fixture for missing beans
*/
public class DummyDataFixture implements DataFixture {
/**
* Test if this initializer should be run
*
* @return true if this should be executed
*/
@Override
public boolean shouldRun() {
return false;
}
/**
* Run the data initialization
*/
@Override
public void run() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy