
edu.stanford.protege.webprotege.gateway.GatewayProperties 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 org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
/**
* Matthew Horridge
* Stanford Center for Biomedical Informatics Research
* 2021-11-17
*/
@Component
@ConfigurationProperties(prefix = "webprotege.gateway")
public class GatewayProperties {
private long timeout;
private String replyChannel;
public long getTimeout() {
return timeout;
}
public void setTimeout(long timeout) {
this.timeout = timeout;
}
public String getReplyChannel() {
return replyChannel;
}
public void setReplyChannel(String replyChannel) {
this.replyChannel = replyChannel;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy