Interface ContactInfoListFactory

All Known Implementing Classes:
ParserTable.TestContactInfoListFactory

public interface ContactInfoListFactory
Interface used to create a ContactInfoList from an IOR, as required for supporting CORBA semantics using the DCS framework. This is a natural correspondence since an IOR contains the information for contacting one or more communication endpoints that can be used to invoke a method on an object, along with the necessary information on particular transports, encodings, and protocols to use. Note that the actual implementation may support more than one IOR in the case of GIOP with Location Forward messages.
  • Method Summary

    Modifier and Type
    Method
    Description
    create(IOR ior)
     
    void
    setORB(ORB orb)
    This will be called after the no-arg constructor before create is called.
  • Method Details

    • setORB

      void setORB(ORB orb)
      This will be called after the no-arg constructor before create is called.
      Parameters:
      orb - ORB to use in factory
    • create

      ContactInfoList create(IOR ior)