1. /*
  2. * @(#)TaggedComponent.java 1.6 03/12/19
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package com.sun.corba.se.spi.ior;
  8. import org.omg.CORBA_2_3.portable.OutputStream ;
  9. import org.omg.CORBA.ORB ;
  10. /** Generic interface for all tagged components. Users of the ORB may
  11. * create implementations of this class and also corresponding factories
  12. * of type TaggedComponentFactory. The factories can be registered with an
  13. * ORB instance, in which case they will be used to unmarshal IORs containing
  14. * the registered tagged component.
  15. */
  16. public interface TaggedComponent extends Identifiable
  17. {
  18. org.omg.IOP.TaggedComponent getIOPComponent( ORB orb ) ;
  19. }