User: chirino
Date: 01/09/26 21:21:28
Modified: src/main/org/jboss/mq/il/uil UILServerILService.java
UILServerILServiceMBean.java
Log:
Re-enabled an old feature we used to have: we can now set the ports
that the UIL and OIL services bind to via MBean
Revision Changes Path
1.8 +16 -1 jbossmq/src/main/org/jboss/mq/il/uil/UILServerILService.java
Index: UILServerILService.java
===================================================================
RCS file:
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/uil/UILServerILService.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- UILServerILService.java 2001/09/27 03:27:43 1.7
+++ UILServerILService.java 2001/09/27 04:21:28 1.8
@@ -45,7 +45,7 @@
* Implements the ServerILJMXService which is used to manage the JVM IL.
*
* @author Hiram Chirino ([EMAIL PROTECTED])
- * @version $Revision: 1.7 $
+ * @version $Revision: 1.8 $
*/
public class UILServerILService extends org.jboss.mq.il.ServerILJMXService
implements Runnable, UILServerILServiceMBean
{
@@ -393,4 +393,19 @@
e.printStackTrace();
}
}
+
+ /** Getter for property serverBindPort.
+ * @return Value of property serverBindPort.
+ */
+ public int getServerBindPort() {
+ return serverBindPort;
+ }
+
+ /** Setter for property serverBindPort.
+ * @param serverBindPort New value of property serverBindPort.
+ */
+ public void setServerBindPort(int serverBindPort) {
+ this.serverBindPort = serverBindPort;
+ }
+
}
1.3 +2 -0
jbossmq/src/main/org/jboss/mq/il/uil/UILServerILServiceMBean.java
Index: UILServerILServiceMBean.java
===================================================================
RCS file:
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/uil/UILServerILServiceMBean.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- UILServerILServiceMBean.java 2001/08/17 03:04:04 1.2
+++ UILServerILServiceMBean.java 2001/09/27 04:21:28 1.3
@@ -14,4 +14,6 @@
* @created August 16, 2001
*/
public interface UILServerILServiceMBean extends
org.jboss.mq.il.ServerILJMXServiceMBean {
+ public int getServerBindPort();
+ public void setServerBindPort(int serverBindPort);
}
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development