|
OpenNMS API 1.2.3 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.opennms.netmgt.eventd.db.Constants
This class contains the constants and methods related to inserting events into the database
Field Summary | |
(package private) static java.lang.String |
ATTRIB_DELIM
The parser adds the value and attributes of an element to a single element of eventBlock and uses the ATTRIB_DELIM to separate these values |
(package private) static char |
DB_ATTRIB_DELIM
The values and the corresponding attributes of an element are added to a single column of the table and delimited by DB_ATTRIB_DELIM |
(package private) static char |
MULTIPLE_VAL_DELIM
The delimiter used to delimit multiple values of the same element that are appended and made the value of a single database column |
(package private) static char |
NAME_VAL_DELIM
The 'parms' are added to a single column of the DB - the parm name and value are added as delimiter separated list of ' |
static int |
SEV_CLEARED
Enumerated values for severity being unimplemented at this time |
static int |
SEV_CRITICAL
Enumerated values for severity is critical |
static int |
SEV_INDETERMINATE
Enumerated values for severity being indeterminate |
static int |
SEV_MAJOR
Enumerated values for severity is major |
static int |
SEV_MINOR
Enumerated values for severity is minor |
static int |
SEV_NORMAL
Enumerated values for severity indicates a warning |
static int |
SEV_WARNING
Enumerated values for severity indicates a warning |
(package private) static int |
STATE_OFF
Enumerated value for the state(tticket and forward) when entry is not active |
(package private) static int |
STATE_ON
Enumerated value for the state(tticket and forward) when entry is active |
(package private) static java.lang.String |
VALUE_TRUNCATE_INDICATOR
Multiple values of any xml element are appended into one value when inserted into the database - if the length of the appended string exceeds the column length, the value is appended with this pattern |
Constructor Summary | |
Constants()
|
Method Summary | |
static java.lang.String |
escape(java.lang.String inStr,
char delimchar)
This method is used to escape required values from strings that may contain those values. |
static java.lang.String |
format(java.util.List strings,
int maxlen)
This method is passed a list of strings and a maximum string size that must not be exceeded by the composite string. |
static java.lang.String |
format(java.lang.String[] strings,
int maxlen)
This method is passed an array of strings and a maximum string size that must not be exceeded by the composite string. |
static java.lang.String |
format(java.lang.String string,
int maxlen)
This method is passed a string to be truncated to the maximum string size passed. |
static int |
getSeverity(java.lang.String sev)
Converts the severity to an integer |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public static final int SEV_INDETERMINATE
public static final int SEV_CLEARED
public static final int SEV_NORMAL
public static final int SEV_WARNING
public static final int SEV_MINOR
public static final int SEV_MAJOR
public static final int SEV_CRITICAL
static final int STATE_ON
static final int STATE_OFF
static final char NAME_VAL_DELIM
static final char MULTIPLE_VAL_DELIM
static final java.lang.String ATTRIB_DELIM
static final char DB_ATTRIB_DELIM
static final java.lang.String VALUE_TRUNCATE_INDICATOR
Constructor Detail |
public Constants()
Method Detail |
public static java.lang.String escape(java.lang.String inStr, char delimchar)
inStr
- string that might contain the delimiterdelimchar
- delimiter to escape
DB_ATTRIB_DELIM
,
MULTIPLE_VAL_DELIM
public static java.lang.String format(java.util.List strings, int maxlen)
strings
- The list of String objects.maxlen
- The maximum length of the composite string
java.lang.ClassCastException
- Thrown if any processed item in the list is not a string
object.public static java.lang.String format(java.lang.String[] strings, int maxlen)
strings
- The list of String objects.maxlen
- The maximum length of the composite string
java.lang.ClassCastException
- Thrown if any processed item in the list is not a string
object.public static java.lang.String format(java.lang.String string, int maxlen)
string
- The string object.maxlen
- The maximum length of the composite string
public static int getSeverity(java.lang.String sev)
|
OpenNMS API 1.2.3 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |