<?php
 
 
/**
 
 * Fields categories definitions.
 
 * This class will define the fields 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 Fields
 
{
 
    /**
 
     * ID field.
 
     * @access public
 
     * @static
 
     */    
 
    public static $ID = "ID";
 
    
 
    /**
 
     * Source field.
 
     * @access public
 
     * @static
 
     */    
 
    public static $SOURCE = "Source";
 
    
 
    /**
 
     * Category fields
 
     * @access public
 
     * @static
 
     */    
 
    public static $CATEGORY = "Category";
 
    
 
    /**
 
     * Timestamp field.
 
     * @access public
 
     * @static
 
     */
 
    public static $TIMESTAMP = "Timestamp";
 
    
 
    /**
 
     * Message field
 
     * @access public
 
     * @static  
 
     */    
 
    public static $MESSAGE = "Message";
 
}
 
 
 
?>
 
 |