org.productivity.java.syslog4j.impl.net.udp.UDPNetSyslog Java Examples
The following examples show how to use
org.productivity.java.syslog4j.impl.net.udp.UDPNetSyslog.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SyslogParameterTest.java From syslog4j with GNU Lesser General Public License v2.1 | 5 votes |
public void testUDPNetSyslog() { AbstractSyslog syslog = new UDPNetSyslog(); // NO-OP - okay syslog.returnWriter(null); assertNull(syslog.getWriter()); }
Example #2
Source File: SyslogMessage.java From hop with Apache License 2.0 | 4 votes |
protected SyslogIF getSyslog() { return new UDPNetSyslog(); }
Example #3
Source File: SyslogMessage.java From pentaho-kettle with Apache License 2.0 | 4 votes |
protected SyslogIF getSyslog() { return new UDPNetSyslog(); }