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

net.sixpointsix.springboot.datafixture.dummy.DummyDataFixture Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
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