1 /*
   2  * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  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 org.omg.CORBA_2_3.portable.InputStream ;
  29 
  30 import com.sun.corba.se.spi.ior.TaggedProfile ;
  31 import com.sun.corba.se.spi.ior.TaggedProfileTemplate ;
  32 import com.sun.corba.se.spi.ior.ObjectId ;
  33 import com.sun.corba.se.spi.ior.ObjectKeyTemplate ;
  34 import com.sun.corba.se.spi.ior.ObjectKey ;
  35 
  36 import com.sun.corba.se.spi.orb.ORB ;
  37 
  38 import com.sun.corba.se.spi.ior.iiop.GIOPVersion ;
  39 
  40 import com.sun.corba.se.impl.encoding.EncapsOutputStream ;
  41 
  42 
  43 public class GenericTaggedProfile extends GenericIdentifiable implements TaggedProfile
  44 {
  45     private ORB orb ;
  46 
  47     public GenericTaggedProfile( int id, InputStream is )
  48     {
  49         super( id, is ) ;
  50         this.orb = (ORB)(is.orb()) ;
  51     }
  52 
  53     public GenericTaggedProfile( ORB orb, int id, byte[] data )
  54     {
  55         super( id, data ) ;
  56         this.orb = orb ;
  57     }
  58 
  59     public TaggedProfileTemplate getTaggedProfileTemplate()
  60     {
  61         return null ;
  62     }
  63 
  64     public ObjectId getObjectId()
  65     {
  66         return null ;
  67     }
  68 
  69     public ObjectKeyTemplate getObjectKeyTemplate()
  70     {
  71         return null ;
  72     }
  73 
  74     public ObjectKey getObjectKey()
  75     {
  76         return null ;
  77     }
  78 
  79     public boolean isEquivalent( TaggedProfile prof )
  80     {
  81         return equals( prof ) ;
  82     }
  83 
  84     public void makeImmutable()
  85     {
  86         // NO-OP
  87     }
  88 
  89     public boolean isLocal()
  90     {
  91         return false ;
  92     }
  93 
  94     public org.omg.IOP.TaggedProfile getIOPProfile()
  95     {
  96         EncapsOutputStream os =
  97             sun.corba.OutputStreamFactory.newEncapsOutputStream(orb);
  98         write( os ) ;
  99         InputStream is = (InputStream)(os.create_input_stream()) ;
 100         return org.omg.IOP.TaggedProfileHelper.read( is ) ;
 101     }
 102 }