User: ejort
Date: 02/01/26 13:02:21
Added: src/main/test/compliance/monitor/support CounterSupport.java
CounterSupportMBean.java StringSupport.java
StringSupportMBean.java
Log:
Monitor tests
Revision Changes Path
1.1 jmx/src/main/test/compliance/monitor/support/CounterSupport.java
Index: CounterSupport.java
===================================================================
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package test.compliance.monitor.support;
public class CounterSupport
implements CounterSupportMBean
{
private int value;
public int getValue()
{
return value;
}
public void setValue(int value)
{
this.value = value;
}
}
1.1
jmx/src/main/test/compliance/monitor/support/CounterSupportMBean.java
Index: CounterSupportMBean.java
===================================================================
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package test.compliance.monitor.support;
public interface CounterSupportMBean
{
public int getValue();
public void setValue(int value);
}
1.1 jmx/src/main/test/compliance/monitor/support/StringSupport.java
Index: StringSupport.java
===================================================================
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package test.compliance.monitor.support;
public class StringSupport
implements StringSupportMBean
{
private String value;
public String getValue()
{
return value;
}
public void setValue(String value)
{
this.value = value;
}
}
1.1
jmx/src/main/test/compliance/monitor/support/StringSupportMBean.java
Index: StringSupportMBean.java
===================================================================
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package test.compliance.monitor.support;
public interface StringSupportMBean
{
public String getValue();
public void setValue(String value);
}
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development