Uses of Interface
org.jboss.remoting.marshal.Marshaller

Packages that use Marshaller
org.jboss.remoting   
org.jboss.remoting.marshal   
org.jboss.remoting.marshal.compress   
org.jboss.remoting.marshal.encryption   
org.jboss.remoting.marshal.http   
org.jboss.remoting.marshal.rmi   
org.jboss.remoting.marshal.serializable   
org.jboss.remoting.transport   
org.jboss.remoting.transport.bisocket   
org.jboss.remoting.transport.http   
org.jboss.remoting.transport.local   
org.jboss.remoting.transport.multiplex   
org.jboss.remoting.transport.rmi   
org.jboss.remoting.transport.socket   
org.jboss.remoting.transport.web   
 

Uses of Marshaller in org.jboss.remoting
 

Methods in org.jboss.remoting that return Marshaller
 Marshaller MicroRemoteClientInvoker.getMarshaller()
           
 

Methods in org.jboss.remoting with parameters of type Marshaller
 void MicroRemoteClientInvoker.setMarshaller(Marshaller marshaller)
           
 void Client.setMarshaller(Marshaller marshaller)
          Sets the marshaller implementation that should be used by the client invoker (transport).
protected abstract  java.lang.Object MicroRemoteClientInvoker.transport(java.lang.String sessionId, java.lang.Object invocation, java.util.Map metadata, Marshaller marshaller, UnMarshaller unmarshaller)
           
 

Uses of Marshaller in org.jboss.remoting.marshal
 

Subinterfaces of Marshaller in org.jboss.remoting.marshal
 interface PreferredStreamMarshaller
          A PreferedStreamMarshaller can create from a raw OutputStream the particular OutputStream it prefers to use.
 interface SerialMarshaller
           
 interface VersionedMarshaller
           
 

Methods in org.jboss.remoting.marshal that return Marshaller
 Marshaller Marshaller.cloneMarshaller()
           
static Marshaller MarshalFactory.getMarshaller(java.lang.Class classType)
          Looks up marshaller by class type.
static Marshaller MarshalFactory.getMarshaller(java.lang.Class classType, java.lang.String serializationType)
          Looks up marshaller by class type.
static Marshaller MarshalFactory.getMarshaller(InvokerLocator locator, java.lang.ClassLoader classLoader)
          Will try to look up marshaller by first looking for data type parameter within locator and then using that to look up marhsaller locally.
static Marshaller MarshalFactory.getMarshaller(InvokerLocator locator, java.lang.ClassLoader classLoader, java.util.Map config)
          Will try to look up marshaller by first looking for data type parameter within locator and config and then using that to look up marhsaller locally.
static Marshaller MarshallerLoaderClient.getMarshaller(InvokerLocator loaderLocator, java.lang.String dataType, java.lang.ClassLoader classByteLoader)
          Will call on marshall loader server to load marshaller for given data type.
static Marshaller MarshalFactory.getMarshaller(java.lang.String dataType)
          Gets marshaller based on data type (i.e.
static Marshaller MarshalFactory.getMarshaller(java.lang.String dataType, java.lang.String serializationType)
           
 

Methods in org.jboss.remoting.marshal with parameters of type Marshaller
static void MarshalFactory.addMarshaller(java.lang.Class classType, Marshaller marshaller, UnMarshaller unMarshaller)
          Will add the marshaller and unmarshaller based on class type.
static void MarshalFactory.addMarshaller(java.lang.String dataType, Marshaller marshaller, UnMarshaller unMarshaller)
          Adds the marshaller and unmarshaller based on data type.
 

Uses of Marshaller in org.jboss.remoting.marshal.compress
 

Classes in org.jboss.remoting.marshal.compress that implement Marshaller
 class CompressingMarshaller
          CompressingMarshaller and CompressingUnMarshaller are a general purpose compressing marshaller / decompressing unmarshaller pair based on Java's GZIP facilities.
 

Methods in org.jboss.remoting.marshal.compress that return Marshaller
 Marshaller CompressingMarshaller.cloneMarshaller()
          Returns a CompressingMarshaller.
 

Constructors in org.jboss.remoting.marshal.compress with parameters of type Marshaller
CompressingMarshaller(Marshaller marshaller)
          Create a new CompressingMarshaller.
 

Uses of Marshaller in org.jboss.remoting.marshal.encryption
 

Classes in org.jboss.remoting.marshal.encryption that implement Marshaller
 class EncryptingMarshaller
          EncryptingMarshaller and EncryptingMarshaller are a general purpose encryption based marshaller / decompressing unmarshaller pair based on Java's Cipher facilities.
 

Methods in org.jboss.remoting.marshal.encryption that return Marshaller
 Marshaller EncryptingMarshaller.cloneMarshaller()
          Returns a EncryptingMarshaller.
 

Constructors in org.jboss.remoting.marshal.encryption with parameters of type Marshaller
EncryptingMarshaller(Marshaller marshaller)
          Create a new EncryptingMarshaller.
 

Uses of Marshaller in org.jboss.remoting.marshal.http
 

Classes in org.jboss.remoting.marshal.http that implement Marshaller
 class HTTPMarshaller
           
 

Methods in org.jboss.remoting.marshal.http that return Marshaller
 Marshaller HTTPMarshaller.cloneMarshaller()
           
 

Uses of Marshaller in org.jboss.remoting.marshal.rmi
 

Classes in org.jboss.remoting.marshal.rmi that implement Marshaller
 class RMIMarshaller
          This marshaller does nothing as will not be used by default RMI invoker since marshalling is done by RMI itself.
 

Methods in org.jboss.remoting.marshal.rmi that return Marshaller
 Marshaller RMIMarshaller.cloneMarshaller()
           
 

Uses of Marshaller in org.jboss.remoting.marshal.serializable
 

Classes in org.jboss.remoting.marshal.serializable that implement Marshaller
 class SerializableMarshaller
          Simple marshaller that simply serializes java objects using standard output stream.
 

Methods in org.jboss.remoting.marshal.serializable that return Marshaller
 Marshaller SerializableMarshaller.cloneMarshaller()
           
 

Uses of Marshaller in org.jboss.remoting.transport
 

Methods in org.jboss.remoting.transport that return Marshaller
 Marshaller ClientInvoker.getMarshaller()
           
 

Methods in org.jboss.remoting.transport with parameters of type Marshaller
 void ClientInvoker.setMarshaller(Marshaller marshaller)
           
 

Uses of Marshaller in org.jboss.remoting.transport.bisocket
 

Methods in org.jboss.remoting.transport.bisocket with parameters of type Marshaller
protected  java.lang.Object BisocketClientInvoker.transport(java.lang.String sessionId, java.lang.Object invocation, java.util.Map metadata, Marshaller marshaller, UnMarshaller unmarshaller)
           
 

Uses of Marshaller in org.jboss.remoting.transport.http
 

Methods in org.jboss.remoting.transport.http with parameters of type Marshaller
protected  java.lang.Object HTTPClientInvoker.transport(java.lang.String sessionId, java.lang.Object invocation, java.util.Map metadata, Marshaller marshaller, UnMarshaller unmarshaller)
           
 

Uses of Marshaller in org.jboss.remoting.transport.local
 

Methods in org.jboss.remoting.transport.local that return Marshaller
 Marshaller LocalClientInvoker.getMarshaller()
           
 

Methods in org.jboss.remoting.transport.local with parameters of type Marshaller
 void LocalClientInvoker.setMarshaller(Marshaller marshaller)
           
 

Uses of Marshaller in org.jboss.remoting.transport.multiplex
 

Methods in org.jboss.remoting.transport.multiplex with parameters of type Marshaller
protected  java.lang.Object MultiplexClientInvoker.transport(java.lang.String sessionId, java.lang.Object invocation, java.util.Map metadata, Marshaller marshaller, UnMarshaller unmarshaller)
           
 

Uses of Marshaller in org.jboss.remoting.transport.rmi
 

Methods in org.jboss.remoting.transport.rmi with parameters of type Marshaller
protected  java.lang.Object RMIClientInvoker.transport(java.lang.String sessionId, java.lang.Object invocation, java.util.Map metadata, Marshaller marshaller, UnMarshaller unmarshaller)
           
 

Uses of Marshaller in org.jboss.remoting.transport.socket
 

Fields in org.jboss.remoting.transport.socket declared as Marshaller
protected  Marshaller ServerThread.marshaller
           
 

Methods in org.jboss.remoting.transport.socket with parameters of type Marshaller
protected  java.io.OutputStream ClientSocketWrapper.createOutputStream(java.lang.String serializationType, java.net.Socket socket, Marshaller marshaller)
           
protected  SocketWrapper MicroSocketClientInvoker.getConnection(Marshaller marshaller, UnMarshaller unmarshaller, int timeAllowed)
           
protected  java.lang.Object MicroSocketClientInvoker.transport(java.lang.String sessionID, java.lang.Object invocation, java.util.Map metadata, Marshaller marshaller, UnMarshaller unmarshaller)
           
 

Uses of Marshaller in org.jboss.remoting.transport.web
 

Methods in org.jboss.remoting.transport.web that return Marshaller
 Marshaller WebServerInvoker.getMarshaller()
           
 



Copyright © 1998-2005 JBoss Inc . All Rights Reserved.