Package com.asakusafw.windgate.core.resource

Examples of com.asakusafw.windgate.core.resource.ResourceProfile


    private ResourceProfile toProfile(Map<String, String> map) {
        return toProfile(map, Collections.<String, String>emptyMap());
    }

    private ResourceProfile toProfile(Map<String, String> map, Map<String, String> params) {
        return new ResourceProfile(
                "jdbc",
                JdbcResourceProvider.class,
                new ProfileContext(getClass().getClassLoader(), new ParameterList(params)),
                map);
    }
View Full Code Here

TOP

Related Classes of com.asakusafw.windgate.core.resource.ResourceProfile

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.