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

net.sf.javaprinciples.resource.ResourceCreator Maven / Gradle / Ivy

There is a newer version: 3.0.3
Show newest version
package net.sf.javaprinciples.resource;

/**
 * A simple creator that allows the implementation of the Resource to be
 * controlled via Spring. There is no implementation of this interface as Spring
 * can peform this automatically.
 * 
 * @author wslade
 * 
 */
public interface ResourceCreator
{
    /**
     * 
     * @param content xxxx
     * @return xxxx
     */
    @SuppressWarnings("unchecked")
    public Resource createResource(String content);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy