<?php
 
 
/**
 
 * Event categories definitions.
 
 * This class will define the categories used for events 
 
 * 
 
 * @author Marius Zadara <[email protected]>
 
 * @category org.zadara.marius.logger.constants
 
 * @copyright (C) 2008 Marius Zadara <[email protected]>
 
 * @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";
 
}
 
 
 
?>
 
 |