com.tivoli.twg.monitor
Class TWGMonSubSysCapabilities

java.lang.Object
  extended bycom.tivoli.twg.monitor.TWGMonSubSysCapabilities

public class TWGMonSubSysCapabilities
extends java.lang.Object

A class that provides a means to get capability information from subsystems. For example:

    TWGMonBsmnSubSys subsys = new TWGMonBsmnSubSys(this);
    TWGMonSubSysCapabilities flags = new TWGMonSubSysCapabilities();
    subsys.reportCapabilities(flags);
    if (flags.subsystemHandlesThresholding) {...}
 


Field Summary
 boolean refreshAtServerLaunch
          This flag indicates the sub-system's ability to support persistent data store.
 boolean subsystemHandlesThresholding
          Deprecated. as of Feb 2000
 long Version
          the version of the control block that is being passed into the monitor subsystem
 
Constructor Summary
TWGMonSubSysCapabilities()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

Version

public final long Version
the version of the control block that is being passed into the monitor subsystem

See Also:
Constant Field Values

subsystemHandlesThresholding

public boolean subsystemHandlesThresholding
Deprecated. as of Feb 2000

this flag indicates that the subsystem is able to handle the calls related to attribute thresholding. The attribute is not currently used.


refreshAtServerLaunch

public boolean refreshAtServerLaunch
This flag indicates the sub-system's ability to support persistent data store. For example, If this flag is set true, thresholds will be pushed at each launch of the product.

Constructor Detail

TWGMonSubSysCapabilities

public TWGMonSubSysCapabilities()