return getMode();
}
public void renderView(RenderRequest request, RenderResponse response, MultiPageModel model)
throws PortletException, IOException {
WARConfigData data = getWARSessionData(request);
data.consolidateDependencies();
request.setAttribute(DATA_PARAMETER, data);
List<String> commonLibs = JSR77_Util.getCommonLibs(request);
List<String> addedDependencies = data.getEnvironmentConfig().getDependencies();
//addedDependencies will be a subset of commonLibs
//sort commonLibs so that addedDependencies show up towards the beginning
commonLibs.removeAll(addedDependencies);
Collections.sort(commonLibs);
Collections.sort(addedDependencies);