Package com.sun.enterprise.util

Examples of com.sun.enterprise.util.RelativePathResolver


    public static String getLocation(String appId, DeployableObjectType type)
        throws IASDeploymentException {
        try {
            ConfigBean module = getModule(appId, type);
            String location = module.getAttributeValue(ServerTags.LOCATION);
            return (new RelativePathResolver()).resolve(location);
        } catch (Exception e) {
            throw new IASDeploymentException(e);
        }
    }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.util.RelativePathResolver

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.