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

com.wesleyhome.johksoftware.resource.VFS2ResourceLoaderService Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 2.0.0
Show newest version
/**
 * 
 */
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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy