com.bytex.snamp.management.jmx.IsInClusterAttribute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of management Show documentation
Show all versions of management Show documentation
SNAMP Management Utilities
The newest version!
package com.bytex.snamp.management.jmx;
import com.bytex.snamp.core.ClusterMember;
import com.bytex.snamp.internal.Utils;
import com.bytex.snamp.jmx.OpenMBean;
import javax.management.openmbean.SimpleType;
/**
* @author Roman Sakno
* @version 2.0
* @since 1.0
*/
final class IsInClusterAttribute extends OpenMBean.OpenAttribute> {
IsInClusterAttribute(){
super("isInCluster", SimpleType.BOOLEAN);
}
@Override
public boolean isIs() {
return true;
}
@Override
public Boolean getValue() {
return ClusterMember.isInCluster(Utils.getBundleContextOfObject(this));
}
}