Package COM.activesw.api.client
Class BrokerSSLConfig
- java.lang.Object
-
- COM.activesw.api.client.BrokerSSLConfig
-
public class BrokerSSLConfig extends java.lang.Object
This class is a data structure used to describe a broker's SSL configuration.
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
certificate_file
The certificate file.java.lang.String
distinguished_name
The distinguished name.java.lang.String
issuer_distinguished_name
The issuer distinguished name (may be null).java.lang.String
password
The certificate file password.
-
Constructor Summary
Constructors Constructor Description BrokerSSLConfig()
Create an empty SSL config objectBrokerSSLConfig(java.lang.String cert_file, java.lang.String password, java.lang.String dist_name, java.lang.String issuer_dist_name)
Create a SSL config with values set.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
Convert to a string.java.lang.String
toString(int indent_level)
Convert to a string.
-
-
-
Field Detail
-
certificate_file
public java.lang.String certificate_file
The certificate file.
-
password
public java.lang.String password
The certificate file password. This value will be null for configurations retrieved from the broker so the password is not exposed on the network.
-
distinguished_name
public java.lang.String distinguished_name
The distinguished name.
-
issuer_distinguished_name
public java.lang.String issuer_distinguished_name
The issuer distinguished name (may be null).
-
-