/* 15 */ private String locatorURI = "socket://localhost:5400";
/* 16 */ private TransporterServer server = null;
/* */
/* */ public void start() throws Exception
/* */ {
/* 20 */ this.server = TransporterServer.createTransporterServer(this.locatorURI, new CustomerProcessorImpl(), CustomerProcessor.class.getName());
/* 21 */ this.server.addHandler(new AccountProcessorImpl(), AccountProcessor.class.getName());
/* */ }