javax.management.monitor.MonitorMBean Maven / Gradle / Ivy
The newest version!
/*
* Copyright (C) The MX4J Contributors.
* All rights reserved.
*
* This software is distributed under the terms of the MX4J License version 1.0.
* See the terms of the MX4J License in the documentation provided with this software.
*/
package javax.management.monitor;
import javax.management.ObjectName;
/**
* @version $Revision: 1.7 $
*/
public interface MonitorMBean
{
public void start();
public void stop();
public boolean isActive();
public void addObservedObject(ObjectName object) throws IllegalArgumentException;
public void removeObservedObject(ObjectName object);
public boolean containsObservedObject(ObjectName object);
public ObjectName[] getObservedObjects();
/**
* @deprecated
*/
public ObjectName getObservedObject();
/**
* @deprecated
*/
public void setObservedObject(ObjectName object);
public String getObservedAttribute();
public void setObservedAttribute(String attribute);
public long getGranularityPeriod();
public void setGranularityPeriod(long period) throws java.lang.IllegalArgumentException;
}