All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.stanford.protege.webprotege.gateway.GatewayProperties Maven / Gradle / Ivy

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