Use SyslogServerConfigIF instead of AbstractSyslogServerConfig in AbstractSyslogServer (#9)

This allows config items that do not inherit from AbstractSyslogServerConfig to be used.

Fixes #8
This commit is contained in:
Jeremy Custenborder 2016-05-04 04:26:31 -05:00 committed by Jochen Schalanda
parent 1a88426d49
commit fdba539aa8

View File

@ -96,21 +96,14 @@ public abstract class AbstractSyslogServer implements SyslogServerIF {
}
protected String syslogProtocol = null;
protected AbstractSyslogServerConfig syslogServerConfig = null;
protected SyslogServerConfigIF syslogServerConfig = null;
protected Thread thread = null;
protected boolean shutdown = false;
public void initialize(String protocol, SyslogServerConfigIF config) throws SyslogRuntimeException {
this.syslogProtocol = protocol;
try {
this.syslogServerConfig = (AbstractSyslogServerConfig) config;
} catch (ClassCastException cce) {
throw new SyslogRuntimeException(cce);
}
this.syslogServerConfig = config;
initialize();
}