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

aQute.bnd.connection.settings.ProxyDTO Maven / Gradle / Ivy

The newest version!
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 String	protocol	= Type.HTTP.name();
	public String	username;
	public String	password;
	public int		port		= 8080;
	public String	nonProxyHosts;
	public String	host;

	List		globs;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy