Class UrlBasedRemoteAccessor
- java.lang.Object
- org.springframework.remoting.support.RemotingSupport
- org.springframework.remoting.support.RemoteAccessor
- org.springframework.remoting.support.UrlBasedRemoteAccessor
- All Implemented Interfaces:
Aware,BeanClassLoaderAware,InitializingBean
- Direct Known Subclasses:
HessianClientInterceptor,RemoteInvocationBasedAccessor
public abstract class UrlBasedRemoteAccessor extends RemoteAccessor implements InitializingBean
Abstract base class for classes that access remote services via URLs. Provides a "serviceUrl" bean property, which is considered as required.- Since:
- 15.12.2003
- Author:
- Juergen Hoeller
Field Summary
Fields inherited from class org.springframework.remoting.support.RemotingSupport
logger
Constructor Summary
Constructors Constructor Description UrlBasedRemoteAccessor()
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidafterPropertiesSet()Invoked by the containingBeanFactoryafter it has set all bean properties and satisfiedBeanFactoryAware,ApplicationContextAwareetc.StringgetServiceUrl()Return the URL of this remote accessor's target service.voidsetServiceUrl(String serviceUrl)Set the URL of this remote accessor's target service.Methods inherited from class org.springframework.remoting.support.RemoteAccessor
getServiceInterface, setServiceInterface
Methods inherited from class org.springframework.remoting.support.RemotingSupport
getBeanClassLoader, overrideThreadContextClassLoader, resetThreadContextClassLoader, setBeanClassLoader
Constructor Detail
UrlBasedRemoteAccessor
public UrlBasedRemoteAccessor()
Method Detail
setServiceUrl
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.
getServiceUrl
public String getServiceUrl()
Return the URL of this remote accessor's target service.
afterPropertiesSet
public void afterPropertiesSet()
Description copied from interface:InitializingBeanInvoked by the containingBeanFactoryafter it has set all bean properties and satisfiedBeanFactoryAware,ApplicationContextAwareetc.This method allows the bean instance to perform validation of its overall configuration and final initialization when all bean properties have been set.
- Specified by:
afterPropertiesSetin interfaceInitializingBean