aQute.bnd.connection.settings.ProxyDTO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of biz.aQute.bndlib Show documentation
Show all versions of biz.aQute.bndlib Show documentation
bndlib: A Swiss Army Knife for OSGi
package aQute.bnd.connection.settings;
import java.net.Proxy.Type;
import java.util.List;
import aQute.bnd.util.dto.DTO;
import aQute.libg.glob.Glob;
public class ProxyDTO extends DTO {
public String id = "default";
public boolean active = true;
public String mask;
public Type protocol = Type.HTTP;
public String username;
public String password;
public int port = 8080;
public String nonProxyHosts;
public String host;
List globs;
}