KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > remoting > security > SSLServerSocketFactoryServiceMBean


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 ServerSocketFactoryMBean
8 {
9    /**
10     * create the service, do expensive operations etc
11     */

12    void create() throws Exception JavaDoc;
13
14    /**
15     * start the service, create is already called
16     */

17    void start() throws Exception JavaDoc;
18
19    /**
20     * stop the service
21     */

22    void stop();
23
24    /**
25     * destroy the service, tear down
26     */

27    void destroy();
28
29    void setSSLSocketBuilder(SSLSocketBuilderMBean sslSocketBuilder);
30
31 }
32
Popular Tags