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

com.codingapi.springboot.framework.rest.properties.HttpProxyProperties Maven / Gradle / Ivy

package com.codingapi.springboot.framework.rest.properties;

import lombok.Getter;
import lombok.Setter;

import java.net.Proxy;

@Setter
@Getter
public class HttpProxyProperties {

    private boolean enableProxy;
    private String proxyHost;
    private int proxyPort;
    private Proxy.Type proxyType;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy