org.opennms.bb.dp.capsd.components
Class CapsdConstants

java.lang.Object
  |
  +--org.opennms.bb.dp.capsd.components.CapsdConstants

final class CapsdConstants
extends Object

This class is a repository for constant, static information concerning the database. Currently it is only used to store the property strings that map to database infomation or SQL statements and the XML repository.

NOTE: This class and its members are marked as package protected. This is by design, not by accident.

Version:
$Revision: 1.6 $
Author:
Weave, OpenNMS

Field Summary
(package private) static String PROP_DB_DRIVER
          The bluebird property string that defines the driver used to connect to the JDBC database.
(package private) static String PROP_DB_GET_NEXTNODEID
          The property name that contains the sql statement that is used to get the next node id in the sequence.
(package private) static String PROP_DB_GET_NEXTSVCID
          The property name that contains the sql statement that is used to get the next node id in the sequence.
(package private) static String PROP_DB_INS_IFSERVICE
          The property name that contains the insertion string used by capsd to store the node's supported services into the database.
(package private) static String PROP_DB_INS_IPINTERFACE
          The property name that contains the insertion string used by capsd to store the node's interface information into the database.
(package private) static String PROP_DB_INS_NODE
          The property name that contains the insertion string used by capsd to store the initial node information into the database.
(package private) static String PROP_DB_INS_SERVICE
          The property name that constains the insertion string for adding new plugin services.
(package private) static String PROP_DB_INS_SNMP
          The property name that contains the insertion string used by capsd to store the node's SNMP informaiton on a per interface basis.
(package private) static String PROP_DB_PASSWD
          The bluebird property that defines the database user's password.
(package private) static String PROP_DB_SVCIDFROMSVCNAME
          The property that returns a service id from the services table given the name of a service.
(package private) static String PROP_DB_URL
          The bluebird property that defines the connection URL for the JDBC database.
(package private) static String PROP_DB_USER
          The bluebird property that defines the database user for the system.
(package private) static String PROP_DP_NAME
          The bluebird property string that defines this distributed poller's name
(package private) static String PROP_XML_REPOSITORY
          The XML repository for finding and loading XML files.
 
Constructor Summary
(package private) CapsdConstants()
           
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

PROP_DP_NAME

static final String PROP_DP_NAME

The bluebird property string that defines this distributed poller's name


PROP_DB_DRIVER

static final String PROP_DB_DRIVER

The bluebird property string that defines the driver used to connect to the JDBC database.


PROP_DB_URL

static final String PROP_DB_URL

The bluebird property that defines the connection URL for the JDBC database.


PROP_DB_USER

static final String PROP_DB_USER

The bluebird property that defines the database user for the system.


PROP_DB_PASSWD

static final String PROP_DB_PASSWD

The bluebird property that defines the database user's password.


PROP_DB_GET_NEXTNODEID

static final String PROP_DB_GET_NEXTNODEID

The property name that contains the sql statement that is used to get the next node id in the sequence.


PROP_DB_INS_NODE

static final String PROP_DB_INS_NODE

The property name that contains the insertion string used by capsd to store the initial node information into the database.


PROP_DB_INS_IPINTERFACE

static final String PROP_DB_INS_IPINTERFACE

The property name that contains the insertion string used by capsd to store the node's interface information into the database.


PROP_DB_INS_IFSERVICE

static final String PROP_DB_INS_IFSERVICE

The property name that contains the insertion string used by capsd to store the node's supported services into the database.


PROP_DB_INS_SNMP

static final String PROP_DB_INS_SNMP

The property name that contains the insertion string used by capsd to store the node's SNMP informaiton on a per interface basis.


PROP_DB_INS_SERVICE

static final String PROP_DB_INS_SERVICE

The property name that constains the insertion string for adding new plugin services.


PROP_DB_SVCIDFROMSVCNAME

static final String PROP_DB_SVCIDFROMSVCNAME

The property that returns a service id from the services table given the name of a service.


PROP_DB_GET_NEXTSVCID

static final String PROP_DB_GET_NEXTSVCID

The property name that contains the sql statement that is used to get the next node id in the sequence.


PROP_XML_REPOSITORY

static final String PROP_XML_REPOSITORY

The XML repository for finding and loading XML files.

Constructor Detail

CapsdConstants

CapsdConstants()