Example usage for org.springframework.remoting.support UrlBasedRemoteAccessor getServiceInterface

List of usage examples for org.springframework.remoting.support UrlBasedRemoteAccessor getServiceInterface

Introduction

In this page you can find the example usage for org.springframework.remoting.support UrlBasedRemoteAccessor getServiceInterface.

Prototype

public Class<?> getServiceInterface() 

Source Link

Document

Return the interface of the service to access.

Usage

From source file:org.jdal.remoting.UrlBasedRemoteReference.java

public UrlBasedRemoteReference(UrlBasedRemoteAccessor accessor) {
    setServiceUrl(accessor.getServiceUrl());
    setServiceInterface(accessor.getServiceInterface());
}