Package com.asakusafw.windgate.core

Examples of com.asakusafw.windgate.core.ProfileContext


            LOG.debug("Resolving a WindGate profile: {}", url);
            GateProfile profile = GateProfile.loadFrom(
                    profileName,
                    p,
                    new ProfileContext(classLoader, new ParameterList(testContext.getEnvironmentVariables())));
            return profile;
        } catch (Exception e) {
            throw new IOException(MessageFormat.format(
                    "Failed to load WindGate profile: {2} (profile={1}, description={0})",
                    description.getClass().getName(),
View Full Code Here


    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.ProfileContext

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.