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 String syslogProtocol = null;
|
||||||
protected AbstractSyslogServerConfig syslogServerConfig = null;
|
protected SyslogServerConfigIF syslogServerConfig = null;
|
||||||
protected Thread thread = null;
|
protected Thread thread = null;
|
||||||
|
|
||||||
protected boolean shutdown = false;
|
protected boolean shutdown = false;
|
||||||
|
|
||||||
public void initialize(String protocol, SyslogServerConfigIF config) throws SyslogRuntimeException {
|
public void initialize(String protocol, SyslogServerConfigIF config) throws SyslogRuntimeException {
|
||||||
this.syslogProtocol = protocol;
|
this.syslogProtocol = protocol;
|
||||||
|
this.syslogServerConfig = config;
|
||||||
try {
|
|
||||||
this.syslogServerConfig = (AbstractSyslogServerConfig) config;
|
|
||||||
|
|
||||||
} catch (ClassCastException cce) {
|
|
||||||
throw new SyslogRuntimeException(cce);
|
|
||||||
}
|
|
||||||
|
|
||||||
initialize();
|
initialize();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user