< prev index next >

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

Print this page




  16  *
  17  * You should have received a copy of the GNU General Public License version
  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 /**
  37  * @author
  38  */
  39 public class TaggedProfileFactoryFinderImpl extends
  40     IdentifiableFactoryFinderBase
  41 {
  42     public TaggedProfileFactoryFinderImpl( ORB orb )
  43     {
  44         super( orb ) ;
  45     }
  46 
  47     public Identifiable handleMissingFactory( int id, InputStream is)
  48     {
  49         return new GenericTaggedProfile( id, is ) ;
  50     }
  51 }


  16  *
  17  * You should have received a copy of the GNU General Public License version
  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 


  37 public class TaggedProfileFactoryFinderImpl extends
  38     IdentifiableFactoryFinderBase
  39 {
  40     public TaggedProfileFactoryFinderImpl( ORB orb )
  41     {
  42         super( orb ) ;
  43     }
  44 
  45     public Identifiable handleMissingFactory( int id, InputStream is)
  46     {
  47         return new GenericTaggedProfile( id, is ) ;
  48     }
  49 }
< prev index next >