Package org.apache.geronimo.web.info

Examples of org.apache.geronimo.web.info.ErrorPageInfo


        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();
View Full Code Here

TOP

Related Classes of org.apache.geronimo.web.info.ErrorPageInfo

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.