Examples of WOStatsPage


Examples of com.webobjects.woextensions.WOStatsPage

    public boolean isStateless() {
        return true;
    }

    public WOComponent statisticsPage() {
        WOStatsPage nextPage = (WOStatsPage) pageWithName("ERXStatisticsPage");
        nextPage.password = ERXProperties.stringForKey("WOStatisticsPassword");
        return nextPage.submit();
    }
View Full Code Here

Examples of com.webobjects.woextensions.WOStatsPage

     * Direct access to WOStats by giving over the password in the "pw" parameter.
     *
     * @return statistics page
     */
    public WOActionResults statsAction() {
        WOStatsPage nextPage = pageWithName(ERXStatisticsPage.class);
        nextPage.password = context().request().stringFormValueForKey("pw");
        return nextPage.submit();
    }
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.