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

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

There is a newer version: 3.3.12
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy