package test.implementation.util.support;
import javax.management.MBeanServer;
public class Trivial implements TrivialMBean
{
private String something = null;
private boolean anAttribute = true;
private boolean gmsWasInvoked = false;
public void setSomething(String thing)
{
this.something = thing;
}
public String getSomething()
{
return something;
}
public void doOperation()
{
}
public MBeanServer getMBeanServer()
{
gmsWasInvoked = true;
return null;
}
public boolean isGMSInvoked()
{
return gmsWasInvoked;
}
}