Java javax.net.ssl SSLParameters fields, constructors, methods, implement or subclass

Example usage for Java javax.net.ssl SSLParameters fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.net.ssl SSLParameters.

The text is from its open source code.

Constructor

SSLParameters()
Constructs SSLParameters.
SSLParameters(String[] cipherSuites, String[] protocols)
Constructs SSLParameters from the specified array of ciphersuites and protocols.

Method

AlgorithmConstraintsgetAlgorithmConstraints()
Returns the cryptographic algorithm constraints.
String[]getCipherSuites()
Returns a copy of the array of ciphersuites or null if none have been set.
ClassgetClass()
Returns the runtime class of this Object .
StringgetEndpointIdentificationAlgorithm()
Gets the endpoint identification algorithm.
booleangetNeedClientAuth()
Returns whether client authentication should be required.
String[]getProtocols()
Returns a copy of the array of protocols or null if none have been set.
booleangetWantClientAuth()
Returns whether client authentication should be requested.
voidsetAlgorithmConstraints(AlgorithmConstraints constraints)
Sets the cryptographic algorithm constraints, which will be used in addition to any configured by the runtime environment.
voidsetCipherSuites(String[] cipherSuites)
Sets the array of ciphersuites.
voidsetEndpointIdentificationAlgorithm(String algorithm)
Sets the endpoint identification algorithm.
voidsetProtocols(String[] protocols)
Sets the array of protocols.
voidsetUseCipherSuitesOrder(boolean honorOrder)
Sets whether the local cipher suites preference should be honored.