KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > remoting > ServerInterceptorChainMBean


1 /*
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7 package org.jboss.remoting;
8
9 /**
10  * MBean interface.
11  */

12 public interface ServerInterceptorChainMBean {
13
14    /**
15     * Get the ConnectorName value.
16     * @return the ConnectorName value.
17     */

18   javax.management.ObjectName JavaDoc getConnectorName() ;
19
20    /**
21     * Set the ConnectorName value.
22     * @param newConnectorName The new ConnectorName value.
23     */

24   void setConnectorName(javax.management.ObjectName JavaDoc newConnectorName) ;
25
26    /**
27     * Get the Subsystem value.
28     * @return the Subsystem value.
29     */

30   java.lang.String JavaDoc getSubsystem() ;
31
32    /**
33     * Set the Subsystem value.
34     * @param newSubsystem The new Subsystem value.
35     */

36   void setSubsystem(java.lang.String JavaDoc newSubsystem) ;
37
38    /**
39     * Get the InterceptorName value.
40     * @return the InterceptorName value.
41     */

42   java.util.List JavaDoc getInterceptorNames() ;
43
44    /**
45     * Set the InterceptorName value.
46     * @param newInterceptorName The new InterceptorName value.
47     */

48   void setInterceptorNames(java.util.List JavaDoc newInterceptorNames) ;
49
50    /**
51     * The <code>start</code> method
52     * @exception Exception if an error occurs
53     */

54   void start() throws java.lang.Exception JavaDoc;
55
56    /**
57     * The <code>stop</code> method
58     * @exception Exception if an error occurs
59     */

60   void stop() throws java.lang.Exception JavaDoc;
61
62 }
63
Popular Tags