to top
Android APIs
public abstract class

SSLServerSocketFactory

extends ServerSocketFactory
java.lang.Object
   ↳ javax.net.ServerSocketFactory
     ↳ javax.net.ssl.SSLServerSocketFactory

Class Overview

The factory for SSL server sockets.

Summary

Protected Constructors
SSLServerSocketFactory()
Creates a new SSLServerSocketFactory instance.
Public Methods
synchronized static ServerSocketFactory getDefault()
Returns the default SSLServerSocketFactory instance.
abstract String[] getDefaultCipherSuites()
Returns the names of the cipher suites that are enabled by default.
abstract String[] getSupportedCipherSuites()
Returns the list of supported cipher suites that could be enabled for an SSL connection created by this factory.
[Expand]
Inherited Methods
From class javax.net.ServerSocketFactory
From class java.lang.Object

Protected Constructors

protected SSLServerSocketFactory ()

Added in API level 1

Creates a new SSLServerSocketFactory instance.

Public Methods

public static synchronized ServerSocketFactory getDefault ()

Added in API level 1

Returns the default SSLServerSocketFactory instance. The default implementation is defined by the security property "ssl.ServerSocketFactory.provider".

Returns
  • the default SSLServerSocketFactory instance.

public abstract String[] getDefaultCipherSuites ()

Added in API level 1

Returns the names of the cipher suites that are enabled by default.

Returns
  • the names of the cipher suites that are enabled by default

public abstract String[] getSupportedCipherSuites ()

Added in API level 1

Returns the list of supported cipher suites that could be enabled for an SSL connection created by this factory.

Returns
  • the list of supported cipher suites
No examples for this method.
Frequently called with: [Clear]
Portions of this page are reproduced from work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. The original page is available here.