Uses of Class
iCMS.pollerd.GenericData

Packages that use GenericData
iCMS.pollerd   
 

Uses of GenericData in iCMS.pollerd
 

Subclasses of GenericData in iCMS.pollerd
 class ApplicationData
          This class is a data holder for the application type data Revision Changes :
1.0.0 - initial version 2.0.0 - Release for GPL as iCMS
 class CmsData
          This class is a data holder for the cms data
the data consists of the following structure:
applications - all available applications in the system node types - all types of nodes in the system ---- applications - all applicatons for this node type locations - all locations of the system ---- node groups - groups of nodes for this location -------- nodes - node of a particular type
It uses the child structure of GenericData for the locations, the applications and node types are stored in seperate data structures
Revision Changes :
1.0.0 - initial version 1.0.1 - added getter/setter methods 2.0.0 - Release for GPL as iCMS
 class LocationData
          This class is a data holder for the location data Revision Changes :
1.0.0 - initial version 2.0.0 - Release for GPL as iCMS
 class NodeData
          This class is a data holder for the node data has only one child (special one: the node type) Revision Changes :
1.0.0 - initial version 2.0.0 - Release for GPL as iCMS
 class NodeGroupData
          This class is a data holder for the node group data Revision Changes :
1.0.0 - initial version 2.0.0 - Release for GPL as iCMS
 class NodeTypeData
          This class is a data holder for the nodeType type data Revision Changes :
1.0.0 - initial version 2.0.0 - Release for GPL as iCMS
 class ProbeData
          This class is a data holder for the probe probeType data Revision Changes :
1.0.0 - initial version 1.0.1 - added support for more that one mib 2.0.0 - Release for GPL as iCMS 2.0.1 - Replacing SNMP Manager with Advanced Version 2.0.2 - Compiles against luky 3.0.2 2.1.0 - Works with passed down SnmpManager, but falls back if not available 2.1.1 - Pinger now also works if there are SNMP vars declared 2.1.2 - Informationals are not decoded to Constants
 

Fields in iCMS.pollerd declared as GenericData
protected  GenericData GenericData.parent
           
 

Methods in iCMS.pollerd that return GenericData
 GenericData GenericData.getChild(String name)
          get a child from this item
 

Methods in iCMS.pollerd with parameters of type GenericData
 void GenericData.addChild(GenericData child)
          add a child to this item
 Object ApplicationData.clone(GenericData parent)
          create an exact copy of this item, with all settings included
 Object GenericData.clone(GenericData parent)
          create an exact copy of this item, with all settings included
 Object NodeTypeData.clone(GenericData parent)
          create an exact copy of this item, with all settings included
 Object ProbeData.clone(GenericData parent)
          create an exact copy of this item, with all settings included
 void GenericData.setParent(GenericData parent)
          sets the parent of this item
 

Constructors in iCMS.pollerd with parameters of type GenericData
ApplicationData(GenericData parent)
          default constructor
ApplicationData(String host, String name, String symbolicName, Vector mibs, ProbeData probe, GenericData parent)
          preload constructor
GenericData(GenericData parent)
          default constructor
LocationData(GenericData parent)
          default constructor
NodeData(GenericData parent)
          default constructor
NodeGroupData(GenericData parent)
          default constructor
NodeTypeData(GenericData parent)
          default constructor
NodeTypeData(String name, Vector mibs, ProbeData probe, GenericData parent)
          preload constructor
ProbeData(GenericData parent)
          default constructor
ProbeData(String host, String snmpGetCmd, int probeType, boolean propagate, String fixed, GenericData parent)
          preload constructor