Package de.iritgo.aktera.clients

Examples of de.iritgo.aktera.clients.KeelClient


        {
          clientClass = "de.iritgo.aktera.comm.openjms.clients.KeelJmsClientOpenJMS";
          log.info("No jms-client parameter supplied - using default OpenJMS client");
        }

        KeelClient oneClient = null;

        try
        {
          oneClient = (KeelClient) Class.forName(clientClass).newInstance();
        }
        catch (Exception e)
        {
          throw new NestedException(e);
        }

        oneClient.setId(clientId);
        log.info("Configuring Client " + clientId);

        myClients.add(oneClient);
      }
    }
View Full Code Here

TOP

Related Classes of de.iritgo.aktera.clients.KeelClient

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.