
edu.stanford.protege.webprotege.gateway.RpcMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webprotege-gwt-api-gateway Show documentation
Show all versions of webprotege-gwt-api-gateway Show documentation
The API Gateway for the WebProtégé GWT User Interface
The newest version!
package edu.stanford.protege.webprotege.gateway;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
/**
* Matthew Horridge
* Stanford Center for Biomedical Informatics Research
* 2021-07-21
*/
public class RpcMethod {
private final String methodName;
@JsonCreator
public RpcMethod(String methodName) {
this.methodName = methodName;
}
@JsonValue
public String getMethodName() {
return methodName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy