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

com.rinoto.migramongo.lookup.ScriptLookupService Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package com.rinoto.migramongo.lookup;

import java.util.Collection;

import com.rinoto.migramongo.InitialMongoMigrationScript;
import com.rinoto.migramongo.MongoMigrationScript;

/**
 * Service to look up the scripts
 * 
 * @author rinoto
 */
public interface ScriptLookupService {

    /**
     * Delivers the initialMigrationScript, or null if not found.
     * 

* If more than one script is found, an IllegalStateException will be thrown. * * @return the initialMigrationScript, or null if not found. */ InitialMongoMigrationScript findInitialScript(); /** * The mongo scripts found. Collection may be empty. * * @return mongo scripts found */ Collection findMongoScripts(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy