}
return appList;
}
public static SetEnvPaths getSetEnvPath(Resource resource){
SetEnvPaths envPaths = new SetEnvPaths();
if (resource instanceof LibraryPrepandPathResource){
envPaths.setName(((LibraryPrepandPathResource) resource).getName());
envPaths.setValue(((LibraryPrepandPathResource) resource).getValue());
return envPaths;
}else if (resource instanceof LibraryApendPathResource){
envPaths.setName(((LibraryApendPathResource) resource).getName());
envPaths.setValue(((LibraryApendPathResource) resource).getValue());
return envPaths;
}else if (resource instanceof AppEnvironmentResource){
envPaths.setName(((AppEnvironmentResource) resource).getName());
envPaths.setValue(((AppEnvironmentResource) resource).getValue());
return envPaths;
}else {
return null;
}
}