// TODO - Add propper capture of these values.
System.out.println(" * SSLContext * ");
SSLContext sslContext = getSSLContext();
SSLParameters sslParams = sslContext.getDefaultSSLParameters();
String[] cipherSuites = sslParams.getCipherSuites();
for (String current : cipherSuites) {
System.out.println("Cipher Suite - " + current);
}
System.out.println("Need Client Auth " + sslParams.getNeedClientAuth());
String[] protocols = sslParams.getProtocols();
for (String current : protocols) {
System.out.println("Protocol " + current);
}
System.out.println("Want Client Auth " + sslParams.getWantClientAuth());
}
System.out.println(" * HTTPSParameters * ");
{
System.out.println("Client Address " + params.getClientAddress());