org.fabric3.spi.scanner.FileSystemResourceFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fabric3-contribution-scanner-spi Show documentation
Show all versions of fabric3-contribution-scanner-spi Show documentation
Fabric3 Contribution Scanner SPI.
package org.fabric3.spi.scanner;
import java.io.File;
/**
* Implementations create DeploymentResources for a given file
*
* @version $Rev: 714 $ $Date: 2007-08-14 20:12:13 -0700 (Tue, 14 Aug 2007) $
*/
public interface FileSystemResourceFactory {
/**
* Creates a deployment resource for the given file
*
* @param file the file to create the resource for
* @return the deployment resource
*/
FileSystemResource createResource(File file);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy