Package com.webobjects.woextensions

Examples of com.webobjects.woextensions.WOStatsPage.submit()


    }

    public WOComponent statisticsPage() {
        WOStatsPage nextPage = (WOStatsPage) pageWithName("ERXStatisticsPage");
        nextPage.password = ERXProperties.stringForKey("WOStatisticsPassword");
        return nextPage.submit();
    }
   
    public WOComponent toggleD2WInfo() {   
        boolean currentState = ERDirectToWeb.d2wDebuggingEnabled(session());
        Level level = currentState ? Level.INFO : Level.DEBUG;
View Full Code Here


     * @return statistics page
     */
    public WOActionResults statsAction() {
        WOStatsPage nextPage = pageWithName(ERXStatisticsPage.class);
        nextPage.password = context().request().stringFormValueForKey("pw");
        return nextPage.submit();
    }
   
    /**
     * Direct access to reset the stats by giving over the password in the "pw" parameter.  This
     * calls ERXStats.reset();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.