User: chirino
Date: 01/09/26 21:21:28
Modified: src/main/org/jboss/mq/il/oil OILServerILService.java
OILServerILServiceMBean.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/oil/OILServerILService.java
Index: OILServerILService.java
===================================================================
RCS file:
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/oil/OILServerILService.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- OILServerILService.java 2001/09/27 03:27:43 1.7
+++ OILServerILService.java 2001/09/27 04:21:28 1.8
@@ -46,7 +46,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 OILServerILService extends org.jboss.mq.il.ServerILJMXService
implements Runnable, OILServerILServiceMBean
{
@@ -385,4 +385,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/oil/OILServerILServiceMBean.java
Index: OILServerILServiceMBean.java
===================================================================
RCS file:
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/oil/OILServerILServiceMBean.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- OILServerILServiceMBean.java 2001/08/17 03:04:04 1.2
+++ OILServerILServiceMBean.java 2001/09/27 04:21:28 1.3
@@ -14,4 +14,6 @@
* @created August 16, 2001
*/
public interface OILServerILServiceMBean 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