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);
}
}