Package org.apache.olio.webapp.rest

Examples of org.apache.olio.webapp.rest.PersonRestAction


   
    @Override
    public void init(ServletConfig config) throws ServletException {
        super.init(config);
        ServletContext context = getServletContext();
        actionMap.put("/api/person", new PersonRestAction(context));
        actionMap.put("/api/event", new EventRestAction(context));
        actionMap.put("/person", new PersonAction(context));
        actionMap.put("/access-artifacts", new ArtifactAction(context));
        actionMap.put("/logout", new LogoutAction(context));
        actionMap.put("/event", new EventAction(context));
View Full Code Here

TOP

Related Classes of org.apache.olio.webapp.rest.PersonRestAction

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.