Ejemplo n.º 1
0
 public ConnectionRequestHandler(
     Socket connection, InboundProcessorParams params, int port, String host) throws ISOException {
   this.connection = connection;
   this.injectingSeq = params.getInjectingSeq();
   this.onErrorSeq = params.getOnErrorSeq();
   this.name = params.getName();
   this.synapseEnvironment = params.getSynapseEnvironment();
   this.params = params;
   this.port = port;
   this.host = host;
   this.packager = ISO8583PackagerFactory.getPackager();
   this.msgInject =
       new ISO8583MessageInject(injectingSeq, onErrorSeq, sequential, synapseEnvironment);
 }