All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.remoting.security.SSLSocketFactoryServiceMBean Maven / Gradle / Ivy

There is a newer version: 5.0.29.Final
Show newest version
package org.jboss.remoting.security;

/**
 * @author Tom Elrod
 */
public interface SSLSocketFactoryServiceMBean extends SocketFactoryMBean
{
   /**
    * create the service, do expensive operations etc
    */
   void create() throws Exception;

   /**
    * start the service, create is already called
    */
   void start() throws Exception;

   /**
    * stop the service
    */
   void stop();

   /**
    * destroy the service, tear down
    */
   void destroy();

   void setSSLSocketBuilder(SSLSocketBuilderMBean sslSocketBuilder);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy