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

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


    @SuppressWarnings("unchecked")
    public <A extends Action<R>, R extends Result> ActionHandler<A, R> getActionHandler(A action) {
        checkNotNull(action, "action must not be null");
        ActionHandler<A, R> handler = (ActionHandler<A, R>) registry.get(action.getClass());
        if(handler == null) {
            throw new ActionHandlerNotFoundException(action);
        }
        return handler;
    }
View Full Code Here

TOP

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

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.