KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > remoting > detection > jndi > JNDIDetectorMBean


1 /***************************************
2  * *
3  * JBoss: The OpenSource J2EE WebOS *
4  * *
5  * Distributable under LGPL license. *
6  * See terms of license at gnu.org. *
7  * *
8  ***************************************/

9 package org.jboss.remoting.detection.jndi;
10
11 import org.jboss.remoting.detection.Detector;
12
13
14 /**
15  * JNDIDetectorMBean
16  *
17  * @author <a HREF="mailto:telrod@e2technologies.net">Tom Elrod</a>
18  * @version $Revision: 1.2 $
19  */

20 public interface JNDIDetectorMBean extends Detector
21 {
22    public int getPort();
23
24    public void setPort(int port);
25
26    public String JavaDoc getHost();
27
28    public void setHost(String JavaDoc host);
29
30    public String JavaDoc getContextFactory();
31
32    public void setContextFactory(String JavaDoc contextFactory);
33
34    public String JavaDoc getURLPackage();
35
36    public void setURLPackage(String JavaDoc urlPackage);
37
38    public int getCleanDetectionNumber();
39
40    public void setCleanDetectionNumber(int cleanDetectionNumber);
41
42 }
43
Popular Tags