org.opennms.bb.dp.eventd
Class EventdConstants

java.lang.Object
  |
  +--org.opennms.bb.dp.eventd.EventdConstants

final class EventdConstants
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.

Version:
$Revision: 1.1 $
Author:
Brian Weaver, OpenNMS.org

Field Summary
(package private) static String EVENT_CONF_FNAME
           
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_NEXTEVENTID
          The property name that contains the sql statement that is used to get the next event id from sequence.
(package private) static String PROP_DB_INS_EVENT
          The property name that contains the insertion string used by eventd to store the event information into the database.
static String PROP_DB_PASSWD
          The bluebird property that defines the database user's password.
static String PROP_DB_URL
          The bluebird property that defines the connection URL for the JDBC database.
static String PROP_DB_USER
          The bluebird property that defines the database user for the system.
(package private) static String PROP_MAX_EVENT_LISTENER_THREADS
          The property name that contains the maximum number of threads to be used by the EventListener
(package private) static String PROP_MAX_EVENT_WRITER_THREADS
          The property name that contains the maximum number of threads to be used by the EventPersistd
static String PROP_XML_REPOSITORY
          The XML repository for finding and loading XML files.
 
Constructor Summary
(package private) EventdConstants()
           
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

PROP_DB_DRIVER

public static final String PROP_DB_DRIVER

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


PROP_DB_URL

public static final String PROP_DB_URL

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


PROP_DB_USER

public static final String PROP_DB_USER

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


PROP_DB_PASSWD

public static final String PROP_DB_PASSWD

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


PROP_XML_REPOSITORY

public static final String PROP_XML_REPOSITORY

The XML repository for finding and loading XML files.


PROP_DB_GET_NEXTEVENTID

static final String PROP_DB_GET_NEXTEVENTID

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


PROP_DB_INS_EVENT

static final String PROP_DB_INS_EVENT

The property name that contains the insertion string used by eventd to store the event information into the database.


PROP_MAX_EVENT_LISTENER_THREADS

static final String PROP_MAX_EVENT_LISTENER_THREADS

The property name that contains the maximum number of threads to be used by the EventListener


PROP_MAX_EVENT_WRITER_THREADS

static final String PROP_MAX_EVENT_WRITER_THREADS

The property name that contains the maximum number of threads to be used by the EventPersistd


EVENT_CONF_FNAME

static final String EVENT_CONF_FNAME
Constructor Detail

EventdConstants

EventdConstants()