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
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