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

org.zodiac.autoconfigure.web.remote.WebRemoteProperties Maven / Gradle / Ivy

There is a newer version: 1.6.8
Show newest version
package org.zodiac.autoconfigure.web.remote;

import org.zodiac.core.web.remote.config.WebRemoteConfigInfo;

public class WebRemoteProperties extends WebRemoteConfigInfo {

    public WebRemoteProperties() {
    }

    @Override
    public String toString() {
        return "WebRemoteProperties [isEnabled()=" + isEnabled() + ", getMaxIdleConnections()="
            + getMaxIdleConnections() + ", getTimeToLiveSeconds()=" + getTimeToLiveSeconds()
            + ", getReadTimeoutMills()=" + getReadTimeoutMills() + ", getWriteTimeoutMills()=" + getWriteTimeoutMills()
            + ", getConnectTimeoutMills()=" + getConnectTimeoutMills() + ", isFollowRedirects()=" + isFollowRedirects()
            + ", isDisableSslValidation()=" + isDisableSslValidation() + ", getMaxResponseSize()="
            + getMaxResponseSize() + ", isLoadBalancerEnabled()=" + isLoadBalancerEnabled() + ", getLevel()="
            + getLevel() + ", getHttpVersion()=" + getHttpVersion() + ", getHttp2()=" + getHttp2() + ", getSsl()="
            + getSsl() + "]";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy