/** * The contents of this file are subject to the license and copyright * detailed in the LICENSE and NOTICE files at the root of the source * tree and available online at * * http://www.dspace.org/license/ */ package org.dspace.servicemanager; import org.dspace.servicemanager.config.DSpaceConfigurationService; import java.util.List; /** * Interface for modular service manager systems. * Provides a generic initialization routine, in lieu of hardcoded * constructors. * * @author Aaron Zeckoski (azeckoski @ gmail.com) */ public interface ExternalServiceManagerSystem extends ServiceManagerSystem { /** * Initialize the service manager's configuration. * * @param parent * @param configurationService * @param testMode * @param developmentMode * @param serviceManagers */ void init(ServiceManagerSystem parent, DSpaceConfigurationService configurationService, boolean testMode, boolean developmentMode, List<ServiceManagerSystem> serviceManagers); }