Package org.xadoop.servlet.actions

Examples of org.xadoop.servlet.actions.LogoutAction


    context.setAttribute(XadoopConstants.CTX_PATHUPLOADDIR, pathUploadDir);

    // action map
    HashMap<String, AbstractAction> actionMap = new HashMap<String, AbstractAction>();
    actionMap.put(LoginAction.ACTIONNAME, new LoginAction());
    actionMap.put(LogoutAction.ACTIONNAME, new LogoutAction());
    actionMap.put(XQueryMRAction.ACTIONNAME, new XQueryMRAction());
    context.setAttribute(XadoopConstants.CTX_ACTIONMAP, actionMap);

    // page map
    AbstractPage errorPage = new ErrorPage("");
View Full Code Here

TOP

Related Classes of org.xadoop.servlet.actions.LogoutAction

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.