Class EjbRef

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Cloneable

    public class EjbRef
    extends AbstractRef
    Represents a reference address to an EJB.
    Author:
    Remy Maucherat
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String DEFAULT_FACTORY
      Default factory for this reference.
      static java.lang.String LINK
      Link address type.
      static java.lang.String REMOTE
      Remote interface classname address type.
      static java.lang.String TYPE
      EJB type address type.
      • Fields inherited from class javax.naming.Reference

        addrs, classFactory, classFactoryLocation, className
    • Constructor Summary

      Constructors 
      Constructor Description
      EjbRef​(java.lang.String ejbType, java.lang.String home, java.lang.String remote, java.lang.String link)
      EJB Reference.
      EjbRef​(java.lang.String ejbType, java.lang.String home, java.lang.String remote, java.lang.String link, java.lang.String factory, java.lang.String factoryLocation)
      EJB Reference.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      protected java.lang.String getDefaultFactoryClassName()  
      • Methods inherited from class javax.naming.Reference

        add, add, clear, clone, equals, get, get, getAll, getClassName, getFactoryClassLocation, hashCode, remove, size
      • Methods inherited from class java.lang.Object

        finalize, getClass, notify, notifyAll, wait, wait, wait
    • Field Detail

      • DEFAULT_FACTORY

        public static final java.lang.String DEFAULT_FACTORY
        Default factory for this reference.
        See Also:
        Constant Field Values
      • REMOTE

        public static final java.lang.String REMOTE
        Remote interface classname address type.
        See Also:
        Constant Field Values
    • Constructor Detail

      • EjbRef

        public EjbRef​(java.lang.String ejbType,
                      java.lang.String home,
                      java.lang.String remote,
                      java.lang.String link)
        EJB Reference.
        Parameters:
        ejbType - EJB type
        home - Home interface classname
        remote - Remote interface classname
        link - EJB link
      • EjbRef

        public EjbRef​(java.lang.String ejbType,
                      java.lang.String home,
                      java.lang.String remote,
                      java.lang.String link,
                      java.lang.String factory,
                      java.lang.String factoryLocation)
        EJB Reference.
        Parameters:
        ejbType - EJB type
        home - Home interface classname
        remote - Remote interface classname
        link - EJB link
        factory - The possibly null class name of the object's factory.
        factoryLocation - The possibly null location from which to load the factory (e.g. URL)