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:
parent
1a88426d49
commit
fdba539aa8
@ -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();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user