Example usage for org.springframework.core.io.support ResourcePatternResolver interface-usage

List of usage examples for org.springframework.core.io.support ResourcePatternResolver interface-usage

Introduction

In this page you can find the example usage for org.springframework.core.io.support ResourcePatternResolver interface-usage.

Usage

From source file org.mule.config.spring.MuleResourceLoader.java

/**
 * <code>MuleResourceLoader</code> is a custom Spring resource loader that calls
 * standard Mule methods for loading resource files.
 */
public class MuleResourceLoader extends DefaultResourceLoader implements ResourcePatternResolver {
    protected transient Log logger = LogFactory.getLog(MuleResourceLoader.class);

From source file org.apache.syncope.core.spring.ResourceWithFallbackLoader.java

public class ResourceWithFallbackLoader implements ResourceLoaderAware, ResourcePatternResolver {

    private ResourcePatternResolver resolver;

    private String primary;

From source file org.apache.syncope.core.misc.spring.ResourceWithFallbackLoader.java

public class ResourceWithFallbackLoader implements ResourceLoaderAware, ResourcePatternResolver {

    private ResourcePatternResolver resolver;

    private String primary;

From source file org.red5.server.api.IContext.java

/**
 * The current context, this object basically wraps the Spring context or in the case of the .Net version, any similar system.
 * 
 */
public interface IContext extends ResourcePatternResolver {

From source file org.red5.server.api.IScope.java

/**
 * The scope object.
 * 
 * A statefull object shared between a group of clients connected to the same
 * <tt>context path</tt>. Scopes are arranged in hierarchical way, so its possible for
 * a scope to have a parent and children scopes. If a client connects to a scope then they are

From source file net.sourceforge.vulcan.metrics.TransformTestCase.java

public abstract class TransformTestCase extends TestCase implements ResourcePatternResolver {

    protected final XmlMetricsPlugin plugin = new XmlMetricsPlugin();
    protected final Document doc = new Document(new Element("merged-root"));

    @Override

From source file com.bluexml.side.framework.alfresco.commons.configurations.RepositoryResourcePatternResolver.java

/**
 * SIDE Extension
 * 
 * @author davidabad
 */
public class RepositoryResourcePatternResolver implements ResourcePatternResolver {

From source file net.sourceforge.vulcan.metrics.XmlMetricsPluginTest.java

public class XmlMetricsPluginTest extends TestCase implements ResourcePatternResolver {
    XmlMetricsPlugin plugin = new XmlMetricsPlugin();

    BuildOutcomeCache cache = new BuildOutcomeCache() {
        @Override
        public ProjectStatusDto getLatestOutcome(String projectName) {

From source file org.red5.server.api.scope.IScope.java

/**
 * The scope object.
 * 
 * A stateful object shared between a group of clients connected to the same <tt>context path</tt>. Scopes are arranged in hierarchical way, so its possible for a scope to have a parent and children scopes. If a client connects to a scope then they are also connected to its parent scope. The scope object is used to access resources, shared object, streams, etc. That is, scope are general option for grouping things in
 * application.
 * 

From source file de.tudarmstadt.ukp.dkpro.bigdata.io.hadoop.HdfsResourceLoader.java

/**
 * Spring ResourceLoader over Hadoop FileSystem.
 * 
 * @author Costin Leau
 */
public class HdfsResourceLoader implements ResourcePatternResolver, PriorityOrdered, Closeable {