Example usage for org.springframework.remoting.caucho HessianProxyFactoryBean getObject

List of usage examples for org.springframework.remoting.caucho HessianProxyFactoryBean getObject

Introduction

In this page you can find the example usage for org.springframework.remoting.caucho HessianProxyFactoryBean getObject.

Prototype

@Override
    @Nullable
    public Object getObject() 

Source Link

Usage

From source file:org.jdal.remoting.caucho.HessianRemoteReference.java

public RemoteClient createRemoteClient() {
    HessianProxyFactoryBean factoryBean = new HessianProxyFactoryBean();
    factoryBean.setServiceInterface(getServiceInterface());
    factoryBean.setServiceUrl(getServiceUrl());

    return (RemoteClient) factoryBean.getObject();
}