<?php
/**
* Event categories definitions.
* This class will define the categories used for events
*
* @author Marius Zadara <marius@zadara.org>
* @category org.zadara.marius.logger.constants
* @copyright (C) 2008 Marius Zadara <marius@zadara.org>
* @license GNU GPL
* @package org.zadara.marius.logger
* @final
*/
final class Categories
{
/**
* No category definition.
* @access public
* @static
*/
public static $NO_CATEGORY = "No category";
/**
* Application category definition.
* @access public
* @static
*/
public static $APPLICATION = "Application";
/**
* Security category
* @access public
* @static
*/
public static $SECURITY = "Security";
/**
* System category
* @access public
* @static
*/
public static $SYSTEM = "System";
}
?>
|