1 package org.jboss.remoting.security;2 3 4 /**5 * @author <a HREF="mailto:telrod@e2technologies.net">Tom Elrod</a>6 */7 public interface SSLServerSocketFactoryServiceMBean extends ServerSocketFactoryMBean8 {9 /**10 * create the service, do expensive operations etc11 */12 void create() throws Exception ;13 14 /**15 * start the service, create is already called16 */17 void start() throws Exception ;18 19 /**20 * stop the service21 */22 void stop();23 24 /**25 * destroy the service, tear down26 */27 void destroy();28 29 void setSSLSocketBuilder(SSLSocketBuilderMBean sslSocketBuilder);30 31 }32