![JAR search and dependency download from the Maven repository](/logo.png)
edu.stanford.protege.webprotege.viz.GetEntityGraphCommandHandler Maven / Gradle / Ivy
The newest version!
package edu.stanford.protege.webprotege.viz;
import edu.stanford.protege.webprotege.api.ActionExecutor;
import edu.stanford.protege.webprotege.ipc.CommandHandler;
import edu.stanford.protege.webprotege.ipc.ExecutionContext;
import edu.stanford.protege.webprotege.ipc.WebProtegeHandler;
import javax.annotation.Nonnull;
import reactor.core.publisher.Mono;
/**
* Matthew Horridge
* Stanford Center for Biomedical Informatics Research
* 2021-08-20
*/
@WebProtegeHandler
public class GetEntityGraphCommandHandler implements CommandHandler {
private final ActionExecutor executor;
public GetEntityGraphCommandHandler(ActionExecutor executor) {
this.executor = executor;
}
@Nonnull
@Override
public String getChannelName() {
return GetEntityGraphAction.CHANNEL;
}
@Override
public Class getRequestClass() {
return GetEntityGraphAction.class;
}
@Override
public Mono handleRequest(GetEntityGraphAction request, ExecutionContext executionContext) {
return executor.executeRequest(request, executionContext);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy