< prev index next >

src/java.corba/share/classes/com/sun/corba/se/impl/ior/TaggedProfileTemplateFactoryFinderImpl.java

Print this page




  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.corba.se.impl.ior;
  27 
  28 import com.sun.corba.se.spi.ior.Identifiable ;
  29 
  30 import com.sun.corba.se.spi.orb.ORB ;
  31 
  32 import com.sun.corba.se.impl.ior.IdentifiableFactoryFinderBase ;
  33 
  34 import org.omg.CORBA_2_3.portable.InputStream ;
  35 
  36 import org.omg.CORBA.INTERNAL ;
  37 
  38 /**
  39  * @author
  40  */
  41 public class TaggedProfileTemplateFactoryFinderImpl extends
  42     IdentifiableFactoryFinderBase
  43 {
  44     public TaggedProfileTemplateFactoryFinderImpl( ORB orb )
  45     {
  46         super( orb ) ;
  47     }
  48 
  49     public Identifiable handleMissingFactory( int id, InputStream is)
  50     {
  51         throw wrapper.taggedProfileTemplateFactoryNotFound( new Integer(id) ) ;
  52     }
  53 }


  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.corba.se.impl.ior;
  27 
  28 import com.sun.corba.se.spi.ior.Identifiable ;
  29 
  30 import com.sun.corba.se.spi.orb.ORB ;
  31 
  32 import com.sun.corba.se.impl.ior.IdentifiableFactoryFinderBase ;
  33 
  34 import org.omg.CORBA_2_3.portable.InputStream ;
  35 
  36 import org.omg.CORBA.INTERNAL ;
  37 



  38 public class TaggedProfileTemplateFactoryFinderImpl extends
  39     IdentifiableFactoryFinderBase
  40 {
  41     public TaggedProfileTemplateFactoryFinderImpl( ORB orb )
  42     {
  43         super( orb ) ;
  44     }
  45 
  46     public Identifiable handleMissingFactory( int id, InputStream is)
  47     {
  48         throw wrapper.taggedProfileTemplateFactoryNotFound( new Integer(id) ) ;
  49     }
  50 }
< prev index next >