Class Overview
The factory for SSL server sockets.
 
Summary
| 
  [Expand]
   Inherited Methods  | 
   
From class javax.net.ServerSocketFactory
  
   
  
    
    
	 
    
        | 
            abstract
            
            
            
            
            ServerSocket
         | 
        
        createServerSocket(int port)
        
         Creates a new server socket which is bound to the given port with a
 maximum backlog of 50 unaccepted connections. 
  
   |  
	 
    
        | 
            abstract
            
            
            
            
            ServerSocket
         | 
        
        createServerSocket(int port, int backlog, InetAddress iAddress)
        
         Creates a new server socket which is bound to the given address on the
 specified port and configures its maximum of queued connections. 
  
   |  
	 
    
        | 
            abstract
            
            
            
            
            ServerSocket
         | 
        
        createServerSocket(int port, int backlog)
        
         Creates a new server socket which is bound to the given port and
 configures its maximum of queued connections. 
  
   |  
	 
    
        | 
            
            
            
            
            
            ServerSocket
         | 
        
        createServerSocket()
        
         Creates a new server socket which is not bound to any local address. 
  
   |  
	 
    
        | 
            
            synchronized
            
            static
            
            ServerSocketFactory
         | 
        
        getDefault()
        
         Gets the default server socket factory of the system which can be used to
 create new server sockets without creating a subclass of this factory. 
  
   |  
 
   
 
 | 
   
From class java.lang.Object
  
   
  
    
    
	 
    
        | 
            
            
            
            
            
            Object
         | 
        
        clone()
        
         Creates and returns a copy of this Object. 
  
   |  
	 
    
        | 
            
            
            
            
            
            boolean
         | 
        
        equals(Object o)
        
         Compares this instance with the specified object and indicates if they
 are equal. 
  
   |  
	 
    
        | 
            
            
            
            
            
            void
         | 
        
        finalize()
        
         Called before the object's memory is reclaimed by the VM. 
  
   |  
	 
    
        | 
            
            
            final
            
            
            Class<? extends Object>
         | 
        
        getClass()
        
        Returns the unique instance of  Class that represents this
 object's class.  
  
   |  
	 
    
        | 
            
            
            
            
            
            int
         | 
        
        hashCode()
        
         Returns an integer hash code for this object. 
  
   |  
	 
    
        | 
            
            
            final
            
            
            void
         | 
        
        notify()
        
         Causes a thread which is waiting on this object's monitor (by means of
 calling one of the wait() methods) to be woken up. 
  
   |  
	 
    
        | 
            
            
            final
            
            
            void
         | 
        
        notifyAll()
        
         Causes all threads which are waiting on this object's monitor (by means
 of calling one of the wait() methods) to be woken up. 
  
   |  
	 
    
        | 
            
            
            
            
            
            String
         | 
        
        toString()
        
         Returns a string containing a concise, human-readable description of this
 object. 
  
   |  
	 
    
        | 
            
            
            final
            
            
            void
         | 
        
        wait()
        
         Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object. 
  
   |  
	 
    
        | 
            
            
            final
            
            
            void
         | 
        
        wait(long millis, int nanos)
        
         Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
 specified timeout expires. 
  
   |  
	 
    
        | 
            
            
            final
            
            
            void
         | 
        
        wait(long millis)
        
         Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
 specified timeout expires. 
  
   |  
 
   
 
 | 
 
Protected Constructors
 
    
      
        protected 
         
         
         
         
        
      
      SSLServerSocketFactory
      ()
    
      
    
      
  Creates a new SSLServerSocketFactory instance.
 
     
 
Public Methods
 
    
      
        public 
        static 
         
         
        synchronized 
        ServerSocketFactory
      
      getDefault
      ()
    
      
    
      
  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
      ()
    
      
    
      
  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
      ()
    
      
    
      
  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