com.wesleyhome.johksoftware.resource.VFS2ResourceLoaderService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jboss-vfs2-resource-loader Show documentation
Show all versions of jboss-vfs2-resource-loader Show documentation
This project will load resources from version 2 of the JBoss virtual file system. Version 2 is found in JBoss Community AS 6 and JBoss EAP 5.1.
/**
*
*/
package com.wesleyhome.johksoftware.resource;
import java.util.ArrayList;
import java.util.List;
import com.wesleyhome.johksoftware.resource.api.ResourceEvaluator;
import com.wesleyhome.johksoftware.resource.spi.ResourceLoaderService;
/**
* @author Justin Wesley
* @since 1.0
*
*/
public class VFS2ResourceLoaderService implements ResourceLoaderService {
/* (non-Javadoc)
* @see com.wesleyhome.johksoftware.resource.spi.ResourceLoaderService#getResourceEvaluators()
*/
@Override
public List> getResourceEvaluators() {
List> list = new ArrayList>();
list.add(VFS2ResourceEvaluator.class);
return list;
}
}