public abstract class

UrlBasedRemoteAccessor

extends RemoteAccessor
implements InitializingBean
java.lang.Object
   ↳ org.springframework.remoting.support.RemotingSupport
     ↳ org.springframework.remoting.support.RemoteAccessor
       ↳ org.springframework.remoting.support.UrlBasedRemoteAccessor
Known Direct Subclasses
Known Indirect Subclasses

Class Overview

Abstract base class for classes that access remote services via URLs. Provides a "serviceUrl" bean property, which is considered as required.

Summary

[Expand]
Inherited Fields
From class org.springframework.remoting.support.RemotingSupport
Public Constructors
UrlBasedRemoteAccessor()
Public Methods
void afterPropertiesSet()
Invoked by a BeanFactory after it has set all bean properties supplied (and satisfied BeanFactoryAware and ApplicationContextAware).
String getServiceUrl()
Return the URL of this remote accessor's target service.
void setServiceUrl(String serviceUrl)
Set the URL of this remote accessor's target service.
[Expand]
Inherited Methods
From class org.springframework.remoting.support.RemoteAccessor
From class org.springframework.remoting.support.RemotingSupport
From class java.lang.Object
From interface org.springframework.beans.factory.BeanClassLoaderAware
From interface org.springframework.beans.factory.InitializingBean

Public Constructors

public UrlBasedRemoteAccessor ()

Public Methods

public void afterPropertiesSet ()

Invoked by a BeanFactory after it has set all bean properties supplied (and satisfied BeanFactoryAware and ApplicationContextAware).

This method allows the bean instance to perform initialization only possible when all bean properties have been set and to throw an exception in the event of misconfiguration.

public String getServiceUrl ()

Return the URL of this remote accessor's target service.

public void setServiceUrl (String serviceUrl)

Set the URL of this remote accessor's target service. The URL must be compatible with the rules of the particular remoting provider.