All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.remoting.Remoting Maven / Gradle / Ivy

There is a newer version: 5.0.29.Final
Show newest version
/*
 * JBoss, Home of Professional Open Source
 * Copyright 2006, JBoss Inc., and individual contributors as indicated
 * by the @authors tag. See the copyright.txt in the distribution for a
 * full listing of individual contributors.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */

package org.jboss.remoting;

public class Remoting
{
   private Remoting() {}
   

   /**
    * Key for the configuration map passed to a Connector to indicate the server
    * socket factory to be used.  This will override the creation of any other socket factory.
    */
   public static final String CUSTOM_SERVER_SOCKET_FACTORY = "customServerSocketFactory";
   

   /**
    * Key for the configuration map passed to a Client to indicate the socket factory to
    * be used.  This will override the creation of any other socket factory.
    */
   public static final String CUSTOM_SOCKET_FACTORY = "customSocketFactory";
   
   /**
    * Key for the configuration map passed to a Client to indicate the classname of
    * the socket factory to be used.
    */
   public static final String SOCKET_FACTORY_NAME = "socketFactory";
   
   /**
    * Key for the configuration map passed to a Client to indicate the classname of
    * the socket factory to be used.  This one is distinct from the bean property "socketFactory".
    */
   public static final String SOCKET_FACTORY_CLASS_NAME = "socketFactoryClassName";
   
   /**
    * Key for the configuration map passed to a Client or Connector to indicate
    * a socket creation listener for sockets created by a SocketFactory.
    */
   public static final String SOCKET_CREATION_CLIENT_LISTENER = "socketCreationClientListener";
   
   /**
    * Key for the configuration map passed to a Client or Connector to indicate
    * a socket creation listener for sockets created by a ServerSocket.
    */
   public static final String SOCKET_CREATION_SERVER_LISTENER = "socketCreationServerListener";
   
   /**
    * A flag indicating whether the RemotingClassLoader uses parent first (=true)
    * or user class loader first delegation.
    */
   public static final String CLASSLOADING_PARENT_FIRST_DELEGATION = "classloadingParentFirstDelegation";
   public static final String CLASSLOADING_PARENT_FIRST_DELEGATION_PROP = "org.jboss.remoting.classloadingParentFirstDelegation";
   
   /**
    * A flag indicating whether org.jboss.remoting.MicroRemoteClientInvoker should translate an 
    * org.jboss.remoting.ServerInvoker.InvalidStateException to an org.jboss.remoting.CannotConnectException.
    */
   public static final String CHANGE_INVALID_STATE_TO_CANNOT_CONNECT = "changeInvalidStateToCannotConnect";

   /**
    * A flag indicating that RemoteClientInvoker should use parameters in the InvokerLocator as
    * well as the configuration map when creating a SocketFactory.
    */
   public static final String USE_ALL_SOCKET_FACTORY_PARAMS = "useAllSocketFactoryParams";

   /**
    * Flags indicating that connection monitoring should treat a connection as being defined
    * by one or two of its endpoints.  I.e., if a [client invoker or] server invoker stops and restarts, then
    * all connections it participated in are now gone.
    */
   public static final String USE_CLIENT_CONNECTION_IDENTITY = "useClientConnectionIdentity";
   public static final String USE_SERVER_CONNECTION_IDENTITY = "useServerConnectionIdentity";
   public static final String SERVER_ID = "serverID";
   
   /**
    * A flag for indicating that when a client side Remoting unmarshaller uses the Thread
    * contect classloader, it should use the context classloader for the currently executing
    * thread, rather than the context classloader for the thread in which the unmarshaller
    * was created.  Note that this behavior is generally desirable and was introduced to
    * fix a source of ClassCastExceptions.  
    */
   public static final String USE_CURRENT_THREAD_CLASS_LOADER = "useCurrentThreadClassLoader";
   
   /**
    * A flag for indicating that the Client configuration map should be used to configure
    * marshallers and unmarshallers.  If set to false (the default value), then parameters
    * will be taken only from the InvokerLocator.
    */
   public static final String PASS_CONFIG_MAP_TO_MARSHAL_FACTORY = "passConfigMapToMarshalFactory";
   
   /**
    * A flag for determining the timeout to use for the lease creation invocation.
    */
   public static final String LEASE_CREATION_TIMEOUT= "leaseCreationTimeout";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy