
com.wesleyhome.johksoftware.resource.vfs2.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.
The newest version!
/*
* Copyright 2011 JOHK Software
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.wesleyhome.johksoftware.resource.vfs2;
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 - 2025 Weber Informatics LLC | Privacy Policy