org.productivity.java.syslog4j.server
Interface SyslogServerEventIF

All Superinterfaces:
java.io.Serializable, SyslogCharSetIF
All Known Implementing Classes:
SyslogServerEvent

public interface SyslogServerEventIF
extends SyslogCharSetIF

SyslogServerEventIF provides an extensible interface for Syslog4j server events.

Syslog4j is licensed under the Lesser GNU Public License v2.1. A copy of the LGPL license is available in the META-INF folder in all distributions of Syslog4j and in the base directory of the "doc" ZIP.

Version:
$Id: SyslogServerEventIF.java,v 1.2 2009/04/10 00:05:02 cvs Exp $
Author:
<syslog4j@productivity.org>

Method Summary
 java.util.Date getDate()
           
 int getFacility()
           
 java.lang.String getHost()
           
 int getLevel()
           
 java.lang.String getMessage()
           
 byte[] getRaw()
           
 void setDate(java.util.Date date)
           
 void setFacility(int facility)
           
 void setHost(java.lang.String host)
           
 void setLevel(int level)
           
 void setMessage(java.lang.String message)
           
 
Methods inherited from interface org.productivity.java.syslog4j.SyslogCharSetIF
getCharSet, setCharSet
 

Method Detail

getRaw

public byte[] getRaw()

getFacility

public int getFacility()

setFacility

public void setFacility(int facility)

getDate

public java.util.Date getDate()

setDate

public void setDate(java.util.Date date)

getLevel

public int getLevel()

setLevel

public void setLevel(int level)

getHost

public java.lang.String getHost()

setHost

public void setHost(java.lang.String host)

getMessage

public java.lang.String getMessage()

setMessage

public void setMessage(java.lang.String message)