
aQute.bnd.connection.settings.ServerDTO 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 aQute.bnd.util.dto.DTO;
public class ServerDTO extends DTO {
public String id = "default";
public String username;
public String password;
/**
* The private key location used to authenticate.
*/
public String privateKey;
/**
* The pass phrase used in conjunction with the privateKey to authenticate.
*/
public String passphrase;
public String match;
public boolean verify = true;
public String trust;
public int maxConcurrentConnections = 0;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy