edu.stanford.protege.webprotege.axioms.AddAxiomsCommandHandler Maven / Gradle / Ivy
The newest version!
package edu.stanford.protege.webprotege.axioms;
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-09-01
*/
@WebProtegeHandler
public class AddAxiomsCommandHandler implements CommandHandler {
private final ActionExecutor executor;
public AddAxiomsCommandHandler(ActionExecutor executor) {
this.executor = executor;
}
@Override
public String getChannelName() {
return AddAxiomsRequest.CHANNEL;
}
@Override
public Class getRequestClass() {
return AddAxiomsRequest.class;
}
@Override
public Mono handleRequest(AddAxiomsRequest request, ExecutionContext executionContext) {
return executor.executeRequest(request, executionContext);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy