User: ejort
Date: 02/02/22 08:44:35
Added: src/main/test/implementation/server/support Trivial.java
TrivialMBean.java
Log:
Default Domain, Querying, Various Other Fixes
Revision Changes Path
1.1 jmx/src/main/test/implementation/server/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.server.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(String arg)
{
}
}
1.1
jmx/src/main/test/implementation/server/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.server.support;
public interface TrivialMBean
{
void setSomething(String thing);
String getSomething();
void doOperation(String arg);
}
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development