Package webapp.ifaces

Examples of webapp.ifaces.WebApp


    }

    public static void main( final String[] args ) throws Exception
    {
        final Document parsedDocument = Main.getDocument( "/web.xml" );
        final WebApp webApp = XML2Java.bind( parsedDocument, WebApp.class );

        System.out.println();
        System.out.println( "Web application configuration: " );
        System.out.println();
        Main.printDescription( webApp.getDescription(), 0 );
        System.out.println();
        Main.printFilters( webApp.getFilters(), 0 );
        Main.printFilterMappings( webApp.getFilterMappings(), 0 )
        Main.printListeners( webApp.getListeners(), 0 );
        Main.printServlets( webApp.getServlets(), 0 );
        Main.printServletMappings( webApp.getServletMappings(), 0 );
        Main.printEnvEntries( webApp.getEnvEntries(), 0 );
        Main.printSessionConfig( webApp.getSessionConfig(), 0 );
        Main.printWelcomeFileList( webApp.getWelcomeFileList(), 0 );
    }
View Full Code Here

TOP

Related Classes of webapp.ifaces.WebApp

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.