com.codingapi.springboot.framework.rest.properties.HttpProxyProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of springboot-starter Show documentation
Show all versions of springboot-starter Show documentation
springboot-starter project for Spring Boot
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;
}