1. /*
  2. * @(#)TaggedProfileFactoryFinderImpl.java 1.15 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.impl.ior;
  8. import com.sun.corba.se.spi.ior.Identifiable ;
  9. import com.sun.corba.se.spi.orb.ORB ;
  10. import com.sun.corba.se.impl.ior.IdentifiableFactoryFinderBase ;
  11. import org.omg.CORBA_2_3.portable.InputStream ;
  12. /**
  13. * @author
  14. */
  15. public class TaggedProfileFactoryFinderImpl extends
  16. IdentifiableFactoryFinderBase
  17. {
  18. public TaggedProfileFactoryFinderImpl( ORB orb )
  19. {
  20. super( orb ) ;
  21. }
  22. public Identifiable handleMissingFactory( int id, InputStream is)
  23. {
  24. return new GenericTaggedProfile( id, is ) ;
  25. }
  26. }