KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > mx > remoting > service > JMXConnectorServerServiceMBean


1 package org.jboss.mx.remoting.service;
2
3 import java.io.IOException JavaDoc;
4 import javax.management.MBeanRegistration JavaDoc;
5
6 /**
7  * @author <a HREF="mailto:telrod@e2technologies.net">Tom Elrod</a>
8  */

9 public interface JMXConnectorServerServiceMBean extends MBeanRegistration JavaDoc
10 {
11    void create() throws Exception JavaDoc;
12
13    void start() throws Exception JavaDoc;
14
15    void stop() throws IOException JavaDoc;
16
17    void destroy();
18
19    void setRegistryPort(int registryPort);
20
21    int getRegistryPort();
22
23    void setBindAddress(String JavaDoc bindAddress);
24
25    String JavaDoc getBindAddress();
26
27    String JavaDoc getJndiPath();
28
29    void setJndiPath(String JavaDoc jndiPath);
30 }
31
Popular Tags