webAppInfo.displayName = webApp.getDisplayName();
webAppInfo.distributable = !webApp.getDistributable().isEmpty();
for (ErrorPage errorPage: webApp.getErrorPage()) {
ErrorPageInfo errorPageInfo = new ErrorPageInfo();
errorPageInfo.location = errorPage.getLocation();
if (errorPage.getErrorCode() != null) {
errorPageInfo.errorCode = errorPage.getErrorCode().intValue();
}
errorPageInfo.exceptionType = errorPage.getExceptionType();