Methods Summary |
---|
public java.net.ServerSocket | createSocket(int port)
return (null);
|
public java.net.ServerSocket | createSocket(int port, int backlog)
return (null);
|
public java.net.ServerSocket | createSocket(int port, int backlog, java.net.InetAddress ifAddress)
return (null);
|
public java.lang.String | getAlgorithm()Gets the certificate encoding algorithm to be used.
// ------------------------------------------------------------- Properties
return (this.algorithm);
|
public java.lang.String | getCiphers()Gets the list of SSL cipher suites that are to be enabled
return this.cipherSuites;
|
public boolean | getClientAuth()Provides information about whether client authentication is enforced.
return (this.clientAuth);
|
public java.lang.String | getKeyAlias()Gets the alias name of the keypair and supporting certificate chain
used by the server to authenticate itself to SSL clients.
return this.keyAlias;
|
public java.lang.String | getKeystoreFile()Gets the pathname to the keystore file.
return (this.keystoreFile);
|
public java.lang.String | getKeystorePass()Gets the keystore password.
return (this.keystorePass);
|
public java.lang.String | getKeystoreType()Gets the keystore type.
return (this.keystoreType);
|
public java.lang.String | getProtocol()Gets the SSL protocol variant to be used.
return (this.protocol);
|
public java.lang.String | getProtocols()Gets the SSL protocol variants to be enabled.
return this.protocols;
|
public java.lang.String | getRandomFile()Gets the pathname to the random file.
return (this.randomFile);
|
public java.lang.String | getRootFile()Gets the pathname to the root list.
return (this.rootFile);
|
public java.lang.String | getSSLImplementation()Gets the name of the SSL implementation to be used.
return (this.sslImplementation);
|
public void | setAlgorithm(java.lang.String algorithm)Sets the certificate encoding algorithm to be used.
this.algorithm = algorithm;
|
public void | setCiphers(java.lang.String ciphers)Sets the SSL cipher suites that are to be enabled.
Only those SSL cipher suites that are actually supported by
the underlying SSL implementation will be enabled.
this.cipherSuites = ciphers;
|
public void | setClientAuth(boolean clientAuth)Sets the requirement of client authentication.
this.clientAuth = clientAuth;
|
public void | setKeyAlias(java.lang.String alias)Sets the alias name of the keypair and supporting certificate chain
used by the server to authenticate itself to SSL clients.
this.keyAlias = alias;
|
public void | setKeystoreFile(java.lang.String keystoreFile)Sets the pathname to the keystore file.
File file = new File(keystoreFile);
if (!file.isAbsolute())
file = new File(System.getProperty("catalina.base"),
keystoreFile);
this.keystoreFile = file.getAbsolutePath();
|
public void | setKeystorePass(java.lang.String keystorePass)Sets the keystore password.
this.keystorePass = keystorePass;
|
public void | setKeystoreType(java.lang.String keystoreType)Sets the keystore type.
this.keystoreType = keystoreType;
|
public void | setProtocol(java.lang.String protocol)Sets the SSL protocol variant to be used.
this.protocol = protocol;
|
public void | setProtocols(java.lang.String protocols)Sets the SSL protocol variants to be enabled.
this.protocols = protocols;
|
public void | setRandomFile(java.lang.String randomFile)Sets the pathname to the random file.
File file = new File(randomFile);
if (!file.isAbsolute())
file = new File(System.getProperty("catalina.base"),
randomFile);
this.randomFile = file.getAbsolutePath();
|
public void | setRootFile(java.lang.String rootFile)Sets the pathname to the root list.
File file = new File(rootFile);
if (!file.isAbsolute())
file = new File(System.getProperty("catalina.base"),
rootFile);
this.rootFile = file.getAbsolutePath();
|
public void | setSSLImplementation(java.lang.String sslImplementation)Sets the name of the SSL implementation to be used.
this.sslImplementation = sslImplementation;
|