User: juhalindfors
Date: 02/01/23 13:50:17
Added: src/main/test/implementation/util/support Trivial.java
TrivialMBean.java
Log:
Revision Changes Path
1.1 jmx/src/main/test/implementation/util/support/Trivial.java
Index: Trivial.java
===================================================================
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package test.implementation.util.support;
public class Trivial implements TrivialMBean
{
private String something = null;
private boolean anAttribute = true;
public void setSomething(String thing)
{
this.something = thing;
}
public String getSomething()
{
return something;
}
public void doOperation()
{
}
}
1.1 jmx/src/main/test/implementation/util/support/TrivialMBean.java
Index: TrivialMBean.java
===================================================================
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package test.implementation.util.support;
public interface TrivialMBean
{
void setSomething(String thing);
String getSomething();
void doOperation();
}
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development