View as "text/plain" | Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.thrift.clients;import in.shop2020.crm.CRMService.Client;import org.apache.thrift.transport.TTransportException;public class CRMClient extends GenericClient{private Client client = null;/**** @throws TTransportException*/public CRMClient() throws TTransportException{this(ConfigClientKeys.crm_service_server_host.toString(), ConfigClientKeys.crm_service_server_port.toString());}/*** get the client for given hostkey and portkey* @param hostConfigKey* @param portConfigKey* @throws TTransportException*/public CRMClient(String hostConfigKey, String portConfigKey) throws TTransportException{super(hostConfigKey, portConfigKey);client = new Client(protocol);}/*** Get the client* @return*/public Client getClient(){return client;}@Overridepublic void closeSession() {return;}}