blob: c600aaa1c7bfc23b32785b6a91d88ff80b8ca45f [file] [log] [blame]
package de.ids_mannheim.korap.web.service;
import de.ids_mannheim.korap.config.ContextHolder;
import de.ids_mannheim.korap.exceptions.KustvaktException;
/**
* @author hanl
* @date 12/01/2016
*/
public interface BootableBeanInterface {
void load (ContextHolder beans) throws KustvaktException;
Class<? extends BootableBeanInterface>[] getDependencies ();
}