Package edu.stanford.bmir.protege.web.server.dispatch

Examples of edu.stanford.bmir.protege.web.server.dispatch.ExecutionContext


    public DispatchServiceResultContainer executeAction(Action action) throws ActionExecutionException, PermissionDeniedException {
        UserId userId = getUserInSession();
        HttpServletRequest request = getThreadLocalRequest();
        HttpSession session = request.getSession();
        final RequestContext requestContext = new RequestContext(userId, session);
        final ExecutionContext executionContext = new ExecutionContext(userId);
        return executor.execute(action, requestContext, executionContext);
    }
View Full Code Here

TOP

Related Classes of edu.stanford.bmir.protege.web.server.dispatch.ExecutionContext

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.