public class

BurlapExporter

extends RemoteExporter
implements InitializingBean
java.lang.Object
   ↳ org.springframework.remoting.support.RemotingSupport
     ↳ org.springframework.remoting.support.RemoteExporter
       ↳ org.springframework.remoting.caucho.BurlapExporter
Known Direct Subclasses

Class Overview

General stream-based protocol exporter for a Burlap endpoint.

Burlap is a slim, XML-based RPC protocol. For information on Burlap, see the Burlap website. This exporter requires Burlap 3.x.

Summary

[Expand]
Inherited Fields
From class org.springframework.remoting.support.RemotingSupport
Public Constructors
BurlapExporter()
Public Methods
void afterPropertiesSet()
Invoked by a BeanFactory after it has set all bean properties supplied (and satisfied BeanFactoryAware and ApplicationContextAware).
void invoke(InputStream inputStream, OutputStream outputStream)
Perform an invocation on the exported object.
void prepare()
Initialize this service exporter.
[Expand]
Inherited Methods
From class org.springframework.remoting.support.RemoteExporter
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 BurlapExporter ()

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 void invoke (InputStream inputStream, OutputStream outputStream)

Perform an invocation on the exported object.

Parameters
inputStream the request stream
outputStream the response stream
Throws
Throwable if invocation failed

public void prepare ()

Initialize this service exporter.