Package com.lingbobu.flashdb.common.remote

Source Code of com.lingbobu.flashdb.common.remote.Hessian

package com.lingbobu.flashdb.common.remote;

import java.net.MalformedURLException;
import com.caucho.hessian.client.HessianProxyFactory;

public class Hessian {
  @SuppressWarnings("unchecked")
  public static <T> T connect(String serviceUrl, Class<T> serviceInterface) {
    HessianProxyFactory factory = new HessianProxyFactory();
    try {
      return (T) factory.create(serviceInterface, serviceUrl);
    } catch (MalformedURLException e) {
      throw new RuntimeException(e);
    }
  }
}
TOP

Related Classes of com.lingbobu.flashdb.common.remote.Hessian

TOP
Copyright © 2018 www.massapi.com. 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.