use of com.serotonin.m2m2.vo.event.EventTypeVO in project ma-core-public by infiniteautomation.
the class AuditEventType method addEventType.
private static void addEventType(String subtype, String key) {
TYPE_NAMES.addElement(subtype);
EVENT_TYPES.add(new EventTypeVO(EventType.EventTypeNames.AUDIT, subtype, 0, 0, new TranslatableMessage(key), SystemSettingsDao.getIntValue(AUDIT_SETTINGS_PREFIX + subtype)));
}
use of com.serotonin.m2m2.vo.event.EventTypeVO in project ma-core-public by infiniteautomation.
the class SystemEventType method addEventType.
private static void addEventType(String subtype, String key) {
TYPE_NAMES.addElement(subtype);
EVENT_TYPES.add(new EventTypeVO(EventType.EventTypeNames.SYSTEM, subtype, 0, 0, new TranslatableMessage(key), SystemSettingsDao.getIntValue(SYSTEM_SETTINGS_PREFIX + subtype)));
}
Aggregations