Example usage for org.springframework.context ResourceLoaderAware interface-usage

List of usage examples for org.springframework.context ResourceLoaderAware interface-usage

Introduction

In this page you can find the example usage for org.springframework.context ResourceLoaderAware interface-usage.

Usage

From source file org.jasig.portal.tools.dbloader.HibernateDbLoader.java

/**
 * Can drop and/or create tables based on an XML table definition file and populate tables
 * based on a XML data definition file. Table creation is done using the Hibernate mapping
 * APIs to allow for a full range of database support.
 * 
 * @author Eric Dalquist

From source file org.jasig.portal.utils.cache.resource.TemplatesBuilder.java

/**
 * Parses the provided input stream into a {@link Templates} object.
 * 
 * @author Eric Dalquist
 * @version $Revision$
 */

From source file org.jasig.resourceserver.utils.aggr.ResourcesElementsProviderImpl.java

/**
 * {@link ResourcesDao} implementation that resolves the String argument using
 * the {@link ServletContext}.
 * 
 * @see ServletContextAware
 * @see JAXBContext

From source file org.mifos.platform.questionnaire.domain.ppi.PPISurveyLocatorImpl.java

public final class PPISurveyLocatorImpl implements PPISurveyLocator, ResourceLoaderAware {
    @Autowired
    private ConfigurationLocator configurationLocator;
    private ResourceLoader resourceLoader;
    private final String ppiXmlFolder;

From source file org.slc.sli.ingestion.tenant.TenantPopulator.java

/**
 * Populates the tenant database collection with default tenant collections.
 *
 * @author jtully
 */
@Component

From source file org.slc.sli.ingestion.transformation.normalization.did.DidEntityConfigReader.java

/**
 * Reader for Manually-provided Deterministic ID Entity configurations
 */
public class DidEntityConfigReader implements ResourceLoaderAware {
    private static final String CONFIG_EXT = ".json";
    private static final DidEntityConfig NOT_FOUND = null;

From source file org.slc.sli.ingestion.transformation.normalization.EntityConfigFactory.java

/**
 * Factory for entity configurations
 *
 * @author okrook
 *
 */

From source file org.springframework.batch.admin.service.LocalFileService.java

/**
 * An implementation of {@link FileService} that deals with files only in the
 * local file system. Files and triggers are created in subdirectories of the
 * Java temporary directory.
 * 
 * @author Dave Syer

From source file org.springframework.boot.autoconfigure.AutoConfigurationImportSelector.java

/**
 * {@link DeferredImportSelector} to handle {@link EnableAutoConfiguration
 * auto-configuration}. This class can also be subclassed if a custom variant of
 * {@link EnableAutoConfiguration @EnableAutoConfiguration} is needed.
 *
 * @author Phillip Webb

From source file org.springframework.cloud.config.monitor.FileMonitorConfiguration.java

/**
 * Configuration for a file watcher that detects changes in local files related to the
 * environment repository. If any files change the {@link PropertyPathEndpoint} is pinged
 * with the paths of the files. This applies to the source files of a local git repository
 * (i.e. a git repository with a "file:" URI) or to a native repository.
 *