Uses of Class
org.jboss.remoting.InvokerLocator

Packages that use InvokerLocator
org.jboss.remoting   
org.jboss.remoting.callback   
org.jboss.remoting.detection   
org.jboss.remoting.marshal   
org.jboss.remoting.network   
org.jboss.remoting.network.filter   
org.jboss.remoting.samples.callback   
org.jboss.remoting.samples.chat.server   
org.jboss.remoting.stream   
org.jboss.remoting.transport   
org.jboss.remoting.transport.bisocket   
org.jboss.remoting.transport.coyote   
org.jboss.remoting.transport.http   
org.jboss.remoting.transport.http.ssl   
org.jboss.remoting.transport.https   
org.jboss.remoting.transport.local   
org.jboss.remoting.transport.multiplex   
org.jboss.remoting.transport.rmi   
org.jboss.remoting.transport.servlet   
org.jboss.remoting.transport.socket   
org.jboss.remoting.transport.sslbisocket   
org.jboss.remoting.transport.sslmultiplex   
org.jboss.remoting.transport.sslrmi   
org.jboss.remoting.transport.sslservlet   
org.jboss.remoting.transport.sslsocket   
org.jboss.remoting.transport.web   
org.jboss.remoting.transporter   
 

Uses of InvokerLocator in org.jboss.remoting
 

Fields in org.jboss.remoting declared as InvokerLocator
protected  InvokerLocator AbstractInvoker.locator
           
 

Methods in org.jboss.remoting that return InvokerLocator
 InvokerLocator AbstractInvoker.getClientLocator(java.lang.String listenerId)
          Gets the client locator.
 InvokerLocator SubsystemNotSupported.getLocator()
           
 InvokerLocator Invoker.getLocator()
          return the locator this Invoker represents
 InvokerLocator InvocationRequest.getLocator()
           
 InvokerLocator AbstractInvoker.getLocator()
          return the locator this Invoker represents
 InvokerLocator AbstractInvoker.CallbackLocatorHolder.getLocator()
           
static InvokerLocator[] InvokerRegistry.getRegisteredServerLocators()
          return an array of InvokerLocators that are local to this VM (server invokers)
static InvokerLocator InvokerRegistry.getSuitableServerLocatorForRemote(InvokerLocator remote)
          return a suitable local server invoker that can service the remote invoker locator based on a compatible transport
static InvokerLocator InvokerLocator.validateLocator(InvokerLocator locator)
          InvokerLocator leaves address 0.0.0.0 unchanged.
 

Methods in org.jboss.remoting with parameters of type InvokerLocator
 java.lang.String AbstractInvoker.addClientLocator(java.lang.String sessionId, InvokerCallbackHandler callbackhandler, InvokerLocator locator)
          Generates a listener id for the callbackhandler and callback server locator combination
 void Client.addListener(InvokerCallbackHandler callbackHandler, InvokerLocator clientLocator)
          Adds the specified handler as a callback listener for push (async) callbacks.
 void Client.addListener(InvokerCallbackHandler callbackHandler, InvokerLocator clientLocator, java.lang.Object callbackHandlerObject)
          Adds the specified handler as a callback listener for push (async) callbacks.
static boolean ConnectionValidator.checkConnection(InvokerLocator locator, java.util.Map config)
          Will make $PING$ invocation on server.
static ClientInvoker InvokerRegistry.createClientInvoker(InvokerLocator locator)
          create a ClientInvoker instance, using the specific InvokerLocator, which is just a client-side invoker to a remote server.
static ClientInvoker InvokerRegistry.createClientInvoker(InvokerLocator locator, java.util.Map configuration)
          create a ClientInvoker instance, using the specific InvokerLocator, which is just a client-side invoker to a remote server
static ServerInvoker InvokerRegistry.createServerInvoker(InvokerLocator locator)
          create a ServerInvoker instance, using the specific Invoker locator data and an implementation of the ServerInvocationHandler interface.
static ServerInvoker InvokerRegistry.createServerInvoker(InvokerLocator locator, java.util.Map configuration)
          create a ServerInvoker instance, using the specific Invoker locator data and an implementation of the ServerInvocationHandler interface along with
static void InvokerRegistry.destroyClientInvoker(InvokerLocator locator, java.util.Map configuration)
          Called to destroy any cached RemoteClientInvoker copies inside the registry.
static InvokerLocator InvokerRegistry.getSuitableServerLocatorForRemote(InvokerLocator remote)
          return a suitable local server invoker that can service the remote invoker locator based on a compatible transport
 java.lang.Object Client.invoke(java.io.InputStream inputStream, java.lang.Object param, InvokerLocator streamServerLocator)
          Takes an inputstream and wraps a server around.
static boolean InvokerRegistry.isClientInvokerRegistered(InvokerLocator locator)
          returns true if the client invoker is registered in the local JVM for a given locator
 boolean InvokerLocator.isSameEndpoint(InvokerLocator compareMe)
          Compares to see if InvokerLocator passed represents the same physical remoting server endpoint as this one.
static boolean InvokerRegistry.isServerInvokerRegistered(InvokerLocator locator)
          returns true if the server invoker is registered in the local JVM for a given locator/handler pair
protected  void ServerInvoker.postProcess(java.lang.String sessionId, java.lang.Object param, java.util.Map payload, InvokerLocator locator)
          Called after an invocation.
protected  void ServerInvoker.preProcess(java.lang.String sessionId, ClassBytes arg, java.util.Map payload, InvokerLocator locator)
          Called prior to an invocation.
 void InvocationRequest.setLocator(InvokerLocator locator)
           
static void InvokerRegistry.unregisterLocator(InvokerLocator locator)
           
static void InvokerRegistry.updateServerInvokerLocator(InvokerLocator locator, InvokerLocator newLocator)
          This is needed by the ServerInvoker since it may change the port being used (if port specified was <= 0) to next available port.
static InvokerLocator InvokerLocator.validateLocator(InvokerLocator locator)
          InvokerLocator leaves address 0.0.0.0 unchanged.
 

Constructors in org.jboss.remoting with parameters of type InvokerLocator
AbstractInvoker.CallbackLocatorHolder(java.lang.String listenerId, InvokerLocator locator)
           
AbstractInvoker(InvokerLocator locator)
           
AbstractInvoker(InvokerLocator locator, java.util.Map configuration)
           
Client(java.lang.ClassLoader cl, InvokerLocator locator, java.lang.String subsystem, java.util.Map configuration)
          Deprecated. This constructor should not be used any more as will no longer take into account the classloader specified as a parameter.
Client(InvokerLocator locator)
          Constructs a remoting client with intended target server specified via the locator, without specifing a remote subsystem or including any metadata.
Client(InvokerLocator locator, java.util.Map configuration)
          Constructs a remoting client with intended target server specified via the locator and configuration metadata.
Client(InvokerLocator locator, java.lang.String subsystem)
          Constructs a remoting client with intended target server specified via the locator and intended subsystem on server for invocations to be routed to.
Client(InvokerLocator locator, java.lang.String subsystem, java.util.Map configuration)
          Constructs a remoting client with intended target server specified via the locator, intended subsystem on the server for invocations to be routed to, and configuration metadata.
InvocationRequest(java.lang.String sessionId, java.lang.String subsystem, java.lang.Object arg, java.util.Map requestPayload, java.util.Map returnPayload, InvokerLocator locator)
           
MicroRemoteClientInvoker(InvokerLocator locator)
           
MicroRemoteClientInvoker(InvokerLocator locator, java.util.Map configuration)
           
RemoteClientInvoker(InvokerLocator locator)
           
RemoteClientInvoker(InvokerLocator locator, java.util.Map configuration)
           
ServerInvoker(InvokerLocator locator)
           
ServerInvoker(InvokerLocator locator, java.util.Map configuration)
           
SubsystemNotSupported(java.lang.String subsystem, InvokerLocator locator)
           
 

Uses of InvokerLocator in org.jboss.remoting.callback
 

Methods in org.jboss.remoting.callback that return InvokerLocator
 InvokerLocator Callback.getServerLocator()
          Gets the locator for the target server where the callback was generated (this will be for the same server that the callback client was registered).
 

Constructors in org.jboss.remoting.callback with parameters of type InvokerLocator
ServerInvokerCallbackHandler(InvocationRequest invocation, InvokerLocator serverLocator, ServerInvoker owner)
           
 

Uses of InvokerLocator in org.jboss.remoting.detection
 

Methods in org.jboss.remoting.detection that return InvokerLocator
 InvokerLocator ServerInvokerMetadata.getInvokerLocator()
           
 InvokerLocator[] Detection.getLocators()
          return the locators for the server
 

Constructors in org.jboss.remoting.detection with parameters of type InvokerLocator
ServerInvokerMetadata(InvokerLocator locator, java.lang.String[] supportedSubsystems)
           
 

Uses of InvokerLocator in org.jboss.remoting.marshal
 

Methods in org.jboss.remoting.marshal that return InvokerLocator
static InvokerLocator MarshallLoaderFactory.convertLocator(InvokerLocator locator)
          Will take regular invoker locator with extra parameters indicating marshall loader configuration (such as port) and converts to the marshall loader locator.
 

Methods in org.jboss.remoting.marshal with parameters of type InvokerLocator
static InvokerLocator MarshallLoaderFactory.convertLocator(InvokerLocator locator)
          Will take regular invoker locator with extra parameters indicating marshall loader configuration (such as port) and converts to the marshall loader locator.
static Connector MarshallLoaderFactory.createMarshallLoader(InvokerLocator locator, java.util.List repositories, javax.management.MBeanServer mbeanServer)
          Create a remoting server connector for a marshaller loader based on the specified locator.
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 UnMarshaller MarshalFactory.getUnMarshaller(InvokerLocator locator, java.lang.ClassLoader classLoader)
          Will try to look up unmarshaller by first looking for data type parameter within locator and then using that to look up unmarshaller locally.
static UnMarshaller MarshalFactory.getUnMarshaller(InvokerLocator locator, java.lang.ClassLoader classLoader, java.util.Map config)
          Will try to look up unmarshaller by first looking for data type parameter within locator and config map and then using that to look up unmarshaller locally.
static UnMarshaller MarshallerLoaderClient.getUnMarshaller(InvokerLocator loaderLocator, java.lang.String dataType, java.lang.ClassLoader classByteLoader)
          Will call on marshall loader server to load unmarshaller for given data type.
 

Uses of InvokerLocator in org.jboss.remoting.network
 

Methods in org.jboss.remoting.network that return InvokerLocator
 InvokerLocator[] NetworkNotification.getLocator()
          return the locators affected by the notification
 InvokerLocator[] NetworkInstance.getLocators()
           
 

Methods in org.jboss.remoting.network with parameters of type InvokerLocator
 boolean NetworkFilter.filter(Identity identity, InvokerLocator[] locators)
          called to apply a filter when selecting 0..* servers on the network
 

Constructors in org.jboss.remoting.network with parameters of type InvokerLocator
NetworkInstance(Identity identity, InvokerLocator[] locators)
           
NetworkNotification(javax.management.ObjectName source, java.lang.String type, Identity identity, InvokerLocator[] locators)
           
 

Uses of InvokerLocator in org.jboss.remoting.network.filter
 

Methods in org.jboss.remoting.network.filter with parameters of type InvokerLocator
 boolean InvokerProtocolFilter.filter(Identity identity, InvokerLocator[] locators)
          called to apply a filter when selecting 0..* servers on the network
 boolean IdentityFilter.filter(Identity identity, InvokerLocator[] locators)
          called to apply a filter when selecting 0..* servers on the network
 

Uses of InvokerLocator in org.jboss.remoting.samples.callback
 

Methods in org.jboss.remoting.samples.callback with parameters of type InvokerLocator
 void CallbackClient.setupServer(InvokerLocator locator)
          Sets up the callback server that the target remoting server can call on with the callbacks that it generates.
 

Uses of InvokerLocator in org.jboss.remoting.samples.chat.server
 

Methods in org.jboss.remoting.samples.chat.server that return InvokerLocator
protected  InvokerLocator ChatManager.createChat(java.lang.Object[] args)
           
 

Uses of InvokerLocator in org.jboss.remoting.stream
 

Constructors in org.jboss.remoting.stream with parameters of type InvokerLocator
StreamServer(java.io.InputStream stream, InvokerLocator locator)
           
 

Uses of InvokerLocator in org.jboss.remoting.transport
 

Methods in org.jboss.remoting.transport that return InvokerLocator
 InvokerLocator BidirectionalClientInvoker.getCallbackLocator(java.util.Map metadata)
          Gets the locator to be used for callbacks when want do not want to establish a new physical connectiong from the server to the client.
 InvokerLocator ClientInvoker.getClientLocator(java.lang.String listenerId)
          Gets the client locator.
 InvokerLocator ConnectorMBean.getLocator()
          Returns the locator to the connector.
 InvokerLocator Connector.getLocator()
          Returns the locator to the connector.
 

Methods in org.jboss.remoting.transport with parameters of type InvokerLocator
 java.lang.String ClientInvoker.addClientLocator(java.lang.String sessionId, InvokerCallbackHandler callbackhandler, InvokerLocator locator)
          This should be set when want to override the default behavior of automatically getting a suitable locator.
 ClientInvoker ClientFactory.createClientInvoker(InvokerLocator locator, java.util.Map config)
           
 ServerInvoker ServerFactory.createServerInvoker(InvokerLocator locator, java.util.Map config)
           
 

Constructors in org.jboss.remoting.transport with parameters of type InvokerLocator
Connector(InvokerLocator locator)
          Creates Connector with specified locator.
Connector(InvokerLocator locator, java.util.Map configuration)
          Constructs connector for given locator and configuration.
 

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

Methods in org.jboss.remoting.transport.bisocket that return InvokerLocator
 InvokerLocator BisocketClientInvoker.getCallbackLocator(java.util.Map metadata)
           
protected  InvokerLocator BisocketServerInvoker.getSecondaryLocator()
           
 

Methods in org.jboss.remoting.transport.bisocket with parameters of type InvokerLocator
 ClientInvoker TransportClientFactory.createClientInvoker(InvokerLocator locator, java.util.Map config)
           
 ServerInvoker TransportServerFactory.createServerInvoker(InvokerLocator locator, java.util.Map config)
           
 

Constructors in org.jboss.remoting.transport.bisocket with parameters of type InvokerLocator
BisocketClientInvoker(InvokerLocator locator)
           
BisocketClientInvoker(InvokerLocator locator, java.util.Map config)
           
BisocketServerInvoker(InvokerLocator locator)
           
BisocketServerInvoker(InvokerLocator locator, java.util.Map configuration)
           
 

Uses of InvokerLocator in org.jboss.remoting.transport.coyote
 

Constructors in org.jboss.remoting.transport.coyote with parameters of type InvokerLocator
CoyoteInvoker(InvokerLocator locator)
           
CoyoteInvoker(InvokerLocator locator, java.util.Map configuration)
           
 

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

Methods in org.jboss.remoting.transport.http with parameters of type InvokerLocator
 ClientInvoker TransportClientFactory.createClientInvoker(InvokerLocator locator, java.util.Map config)
           
 ServerInvoker TransportServerFactory.createServerInvoker(InvokerLocator locator, java.util.Map config)
           
 

Constructors in org.jboss.remoting.transport.http with parameters of type InvokerLocator
HTTPClientInvoker(InvokerLocator locator)
           
HTTPClientInvoker(InvokerLocator locator, java.util.Map configuration)
           
HTTPServerInvoker(InvokerLocator locator)
          Deprecated.  
HTTPServerInvoker(InvokerLocator locator, java.util.Map configuration)
          Deprecated.  
 

Uses of InvokerLocator in org.jboss.remoting.transport.http.ssl
 

Constructors in org.jboss.remoting.transport.http.ssl with parameters of type InvokerLocator
HTTPSClientInvoker(InvokerLocator locator)
           
HTTPSClientInvoker(InvokerLocator locator, java.util.Map configuration)
           
HTTPSServerInvoker(InvokerLocator locator)
          Deprecated.  
HTTPSServerInvoker(InvokerLocator locator, java.util.Map configuration)
          Deprecated.  
 

Uses of InvokerLocator in org.jboss.remoting.transport.https
 

Methods in org.jboss.remoting.transport.https with parameters of type InvokerLocator
 ClientInvoker TransportClientFactory.createClientInvoker(InvokerLocator locator, java.util.Map config)
           
 ServerInvoker TransportServerFactory.createServerInvoker(InvokerLocator locator, java.util.Map config)
           
 

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

Methods in org.jboss.remoting.transport.local that return InvokerLocator
 InvokerLocator LocalClientInvoker.getCallbackLocator(java.util.Map metadata)
           
 

Methods in org.jboss.remoting.transport.local with parameters of type InvokerLocator
 ClientInvoker TransportClientFactory.createClientInvoker(InvokerLocator locator, java.util.Map config)
           
 ServerInvoker TransportServerFactory.createServerInvoker(InvokerLocator locator, java.util.Map config)
           
 

Constructors in org.jboss.remoting.transport.local with parameters of type InvokerLocator
LocalClientInvoker(InvokerLocator locator)
           
LocalClientInvoker(InvokerLocator locator, java.util.Map configuration)
           
LocalClientInvoker(InvokerLocator locator, java.util.Map configuration, boolean byValue)
           
LocalServerInvoker(InvokerLocator locator, java.util.Map config)
           
 

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

Methods in org.jboss.remoting.transport.multiplex that return InvokerLocator
 InvokerLocator MultiplexClientInvoker.getCallbackLocator(java.util.Map metadata)
           
 

Methods in org.jboss.remoting.transport.multiplex with parameters of type InvokerLocator
 ClientInvoker TransportClientFactory.createClientInvoker(InvokerLocator locator, java.util.Map config)
           
 ServerInvoker TransportServerFactory.createServerInvoker(InvokerLocator locator, java.util.Map config)
           
 

Constructors in org.jboss.remoting.transport.multiplex with parameters of type InvokerLocator
MultiplexClientInvoker(InvokerLocator locator)
          Create a new MultiplexClientInvoker.
MultiplexClientInvoker(InvokerLocator locator, java.util.Map configuration)
          Create a new MultiplexClientInvoker.
MultiplexServerInvoker(InvokerLocator locator)
          Create a new MultiplexServerInvoker.
MultiplexServerInvoker(InvokerLocator locator, java.util.Map configuration)
          Create a new MultiplexServerInvoker.
MultiplexServerInvoker(InvokerLocator locator, java.util.Map configuration, java.net.ServerSocket serverSocket, java.net.Socket socket, java.util.Map virtualServerInvokers)
          Create a new MultiplexServerInvoker.
 

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

Fields in org.jboss.remoting.transport.rmi declared as InvokerLocator
protected  InvokerLocator RemotingRMIClientSocketFactory.invokerLocator
           
 

Methods in org.jboss.remoting.transport.rmi with parameters of type InvokerLocator
static void RemotingRMIClientSocketFactory.addLocalConfiguration(InvokerLocator invokerLocator, java.util.Map localConfig)
           
 ClientInvoker TransportClientFactory.createClientInvoker(InvokerLocator locator, java.util.Map config)
           
 ServerInvoker TransportServerFactory.createServerInvoker(InvokerLocator locator, java.util.Map config)
           
 

Constructors in org.jboss.remoting.transport.rmi with parameters of type InvokerLocator
RemotingRMIClientSocketFactory.ComparableHolder(InvokerLocator invokerLocator)
           
RemotingRMIClientSocketFactory(InvokerLocator locator, java.lang.String hostName, int timeout, java.util.Map config)
           
RMIClientInvoker(InvokerLocator locator)
           
RMIClientInvoker(InvokerLocator locator, java.util.Map configuration)
           
RMIServerInvoker(InvokerLocator locator)
           
RMIServerInvoker(InvokerLocator locator, java.util.Map configuration)
           
 

Uses of InvokerLocator in org.jboss.remoting.transport.servlet
 

Methods in org.jboss.remoting.transport.servlet with parameters of type InvokerLocator
 ClientInvoker TransportClientFactory.createClientInvoker(InvokerLocator locator, java.util.Map config)
           
 ServerInvoker TransportServerFactory.createServerInvoker(InvokerLocator locator, java.util.Map config)
           
 

Constructors in org.jboss.remoting.transport.servlet with parameters of type InvokerLocator
ServletServerInvoker(InvokerLocator locator)
           
ServletServerInvoker(InvokerLocator locator, java.util.Map configuration)
           
 

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

Methods in org.jboss.remoting.transport.socket with parameters of type InvokerLocator
 ClientInvoker TransportClientFactory.createClientInvoker(InvokerLocator locator, java.util.Map config)
           
 ServerInvoker TransportServerFactory.createServerInvoker(InvokerLocator locator, java.util.Map config)
           
 

Constructors in org.jboss.remoting.transport.socket with parameters of type InvokerLocator
MicroSocketClientInvoker(InvokerLocator locator)
           
MicroSocketClientInvoker(InvokerLocator locator, java.util.Map configuration)
           
SocketClientInvoker(InvokerLocator locator)
          Set number of retries in getSocket method
SocketClientInvoker(InvokerLocator locator, java.util.Map configuration)
           
SocketServerInvoker(InvokerLocator locator)
           
SocketServerInvoker(InvokerLocator locator, java.util.Map configuration)
           
 

Uses of InvokerLocator in org.jboss.remoting.transport.sslbisocket
 

Methods in org.jboss.remoting.transport.sslbisocket with parameters of type InvokerLocator
 ClientInvoker TransportClientFactory.createClientInvoker(InvokerLocator locator, java.util.Map config)
           
 ServerInvoker TransportServerFactory.createServerInvoker(InvokerLocator locator, java.util.Map config)
           
 

Constructors in org.jboss.remoting.transport.sslbisocket with parameters of type InvokerLocator
SSLBisocketClientInvoker(InvokerLocator locator)
           
SSLBisocketClientInvoker(InvokerLocator locator, java.util.Map configuration)
           
SSLBisocketServerInvoker(InvokerLocator locator)
           
SSLBisocketServerInvoker(InvokerLocator locator, java.util.Map configuration)
           
 

Uses of InvokerLocator in org.jboss.remoting.transport.sslmultiplex
 

Methods in org.jboss.remoting.transport.sslmultiplex with parameters of type InvokerLocator
 ClientInvoker TransportClientFactory.createClientInvoker(InvokerLocator locator, java.util.Map config)
           
 ServerInvoker TransportServerFactory.createServerInvoker(InvokerLocator locator, java.util.Map config)
           
 

Constructors in org.jboss.remoting.transport.sslmultiplex with parameters of type InvokerLocator
SSLMultiplexClientInvoker(InvokerLocator locator)
           
SSLMultiplexClientInvoker(InvokerLocator locator, java.util.Map configuration)
           
SSLMultiplexServerInvoker(InvokerLocator locator)
           
SSLMultiplexServerInvoker(InvokerLocator locator, java.util.Map configuration)
           
 

Uses of InvokerLocator in org.jboss.remoting.transport.sslrmi
 

Methods in org.jboss.remoting.transport.sslrmi with parameters of type InvokerLocator
 ClientInvoker TransportClientFactory.createClientInvoker(InvokerLocator locator, java.util.Map config)
           
 ServerInvoker TransportServerFactory.createServerInvoker(InvokerLocator locator, java.util.Map config)
           
 

Constructors in org.jboss.remoting.transport.sslrmi with parameters of type InvokerLocator
SerializableSSLClientSocketFactory(InvokerLocator invokerLocator, int timeout, java.util.Map configuration)
           
SSLRMIClientInvoker(InvokerLocator locator)
           
SSLRMIClientInvoker(InvokerLocator locator, java.util.Map configuration)
           
SSLRMIServerInvoker(InvokerLocator locator)
           
SSLRMIServerInvoker(InvokerLocator locator, java.util.Map configuration)
           
 

Uses of InvokerLocator in org.jboss.remoting.transport.sslservlet
 

Methods in org.jboss.remoting.transport.sslservlet with parameters of type InvokerLocator
 ClientInvoker TransportClientFactory.createClientInvoker(InvokerLocator locator, java.util.Map config)
           
 ServerInvoker TransportServerFactory.createServerInvoker(InvokerLocator locator, java.util.Map config)
           
 

Uses of InvokerLocator in org.jboss.remoting.transport.sslsocket
 

Methods in org.jboss.remoting.transport.sslsocket with parameters of type InvokerLocator
 ClientInvoker TransportClientFactory.createClientInvoker(InvokerLocator locator, java.util.Map config)
           
 ServerInvoker TransportServerFactory.createServerInvoker(InvokerLocator locator, java.util.Map config)
           
 

Constructors in org.jboss.remoting.transport.sslsocket with parameters of type InvokerLocator
SSLSocketClientInvoker(InvokerLocator locator)
           
SSLSocketClientInvoker(InvokerLocator locator, java.util.Map configuration)
           
SSLSocketServerInvoker(InvokerLocator locator)
           
SSLSocketServerInvoker(InvokerLocator locator, java.util.Map configuration)
           
 

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

Constructors in org.jboss.remoting.transport.web with parameters of type InvokerLocator
WebServerInvoker.CreatedInvocationRequest(java.lang.String sessionId, java.lang.String subsystem, java.lang.Object arg, java.util.Map requestPayload, java.util.Map returnPayload, InvokerLocator locator)
           
WebServerInvoker(InvokerLocator locator)
           
WebServerInvoker(InvokerLocator locator, java.util.Map configuration)
           
 

Uses of InvokerLocator in org.jboss.remoting.transporter
 

Methods in org.jboss.remoting.transporter with parameters of type InvokerLocator
static java.lang.Object TransporterClient.createTransporterClient(InvokerLocator locator, java.lang.Class targetClass)
          Create a remote proxy to a POJO on a remote server.
static TransporterServer TransporterServer.createTransporterServer(InvokerLocator locator, java.lang.Object target)
          Creates a remoting server based on given locator.
static TransporterServer TransporterServer.createTransporterServer(InvokerLocator locator, java.lang.Object target, boolean isClustered)
          Creates a remoting server based on given locator.
static TransporterServer TransporterServer.createTransporterServer(InvokerLocator locator, java.lang.Object target, java.lang.String subsystem)
          Creates a remoting server based on given locator.
static TransporterServer TransporterServer.createTransporterServer(InvokerLocator locator, java.lang.Object target, java.lang.String subsystem, boolean isClustered)
          Creates a remoting server based on given locator.
static TransporterServer TransporterServer.createTransporterServer(InvokerLocator locator, java.lang.Object target, java.lang.String subsystem, java.util.Map config, boolean isClustered)
          Creates a remoting server based on given locator.
protected  Connector TransporterServer.getConnector(InvokerLocator locator, java.util.Map config, org.w3c.dom.Element xmlConfig)
          Returns the connector that this transporter server will use.
 

Constructors in org.jboss.remoting.transporter with parameters of type InvokerLocator
TransporterServer(InvokerLocator locator, java.lang.Object target, java.lang.String subsystem)
          Creates a remoting server using the provided locator and subsytem and creating a TransporterHandler which takes the specified target object.
TransporterServer(InvokerLocator locator, java.lang.Object target, java.lang.String subsystem, java.util.Map config)
          Creates a remoting server using the provided locator and subsytem and creating a TransporterHandler which takes the specified target object.
 



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