Example usage for Java javax.net.ssl SSLParameters fields, constructors, methods, implement or subclass
The text is from its open source code.
SSLParameters() Constructs SSLParameters. | |
SSLParameters(String[] cipherSuites, String[] protocols) Constructs SSLParameters from the specified array of ciphersuites and protocols. |
AlgorithmConstraints | getAlgorithmConstraints() Returns the cryptographic algorithm constraints. |
String[] | getCipherSuites() Returns a copy of the array of ciphersuites or null if none have been set. |
Class> | getClass() Returns the runtime class of this Object . |
String | getEndpointIdentificationAlgorithm() Gets the endpoint identification algorithm. |
boolean | getNeedClientAuth() Returns whether client authentication should be required. |
String[] | getProtocols() Returns a copy of the array of protocols or null if none have been set. |
boolean | getWantClientAuth() Returns whether client authentication should be requested. |
void | setAlgorithmConstraints(AlgorithmConstraints constraints) Sets the cryptographic algorithm constraints, which will be used in addition to any configured by the runtime environment. |
void | setCipherSuites(String[] cipherSuites) Sets the array of ciphersuites. |
void | setEndpointIdentificationAlgorithm(String algorithm) Sets the endpoint identification algorithm. |
void | setProtocols(String[] protocols) Sets the array of protocols. |
void | setUseCipherSuitesOrder(boolean honorOrder) Sets whether the local cipher suites preference should be honored. |