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

org.dspace.kernel.config.SpringLoader Maven / Gradle / Ivy

There is a newer version: 8.0
Show newest version
/**
 * 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.kernel.config;

import org.dspace.services.ConfigurationService;

/**
 * Interface that is used so that modules can determine their own spring file locations
 *
 * @author Kevin Van de Velde (kevin at atmire dot com)
 */
public interface SpringLoader {

    public final String XML_SUFFIX = "*.xml";

    /**
     * Returns all the locations that contain spring files
     * @param configurationService the dspace configuration service
     * @return an array containing spring file locations
     */
    public String[] getResourcePaths(ConfigurationService configurationService);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy