152153154155156157158159160
protected Object doProcessIncoming(Object o) throws FetionException { try { this.logMessage((SipcInMessage) o); } catch (IOException e) { throw new ProcessorException(e); } return super.doProcessIncoming(o); }
166167168169170171172173174
protected Object doProcessOutcoming(Object o) throws FetionException { try { this.logMessage((SipcOutMessage) o); } catch (IOException e) { throw new ProcessorException(e); } return super.doProcessOutcoming(o); }