org.jboss.invocation.iiop
Interface ServantRegistry


public interface ServantRegistry

Interface of a registry for CORBA servants.


Method Summary
 ReferenceFactory (src) bind(java.lang.String name, org.omg.PortableServer.Servant servant)
          Binds name to servant.
 ReferenceFactory (src) bind(java.lang.String name, org.omg.PortableServer.Servant servant, org.omg.CORBA.Policy[] policies)
          Binds name to servant, with the given policies.
 void unbind(java.lang.String name)
          Unbinds the servant bound to name.
 

Method Detail

bind

public ReferenceFactory (src)  bind(java.lang.String name,
                             org.omg.PortableServer.Servant servant,
                             org.omg.CORBA.Policy[] policies)
                      throws java.lang.Exception
Binds name to servant, with the given policies. Returns a ReferenceFactory that should be used to create CORBA references to the object(s) implemented by servant. A CORBA reference created by this factory will contain name as the servant id embedded in the reference. If the servant implements more than one CORBA object, references for such objects should be created by the ReferenceFactory method createReferenceWithId(), which takes an id parameter to distinguish among the objects implemented by the same servant. Otherwise (if the servant implements a single CORBA object) the method createReference() should be used.

Throws:
java.lang.Exception

bind

public ReferenceFactory (src)  bind(java.lang.String name,
                             org.omg.PortableServer.Servant servant)
                      throws java.lang.Exception
Binds name to servant. Returns a ReferenceFactory that should be used to create CORBA references to the object(s) implemented by servant. For the usage of this ReferenceFactory, see method above.

Throws:
java.lang.Exception

unbind

public void unbind(java.lang.String name)
            throws java.lang.Exception
Unbinds the servant bound to name.

Throws:
java.lang.Exception