1 <!doctype html>
   2 <html>
   3 <head>
   4 <!--
   5 Copyright (c) 1998, 2017, Oracle and/or its affiliates. All rights reserved.
   6 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   7 
   8 This code is free software; you can redistribute it and/or modify it
   9 under the terms of the GNU General Public License version 2 only, as
  10 published by the Free Software Foundation.  Oracle designates this
  11 particular file as subject to the "Classpath" exception as provided
  12 by Oracle in the LICENSE file that accompanied this code.
  13 
  14 This code is distributed in the hope that it will be useful, but WITHOUT
  15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  16 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  17 version 2 for more details (a copy is included in the LICENSE file that
  18 accompanied this code).
  19 
  20 You should have received a copy of the GNU General Public License version
  21 2 along with this work; if not, write to the Free Software Foundation,
  22 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  23 
  24 Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  25 or visit www.oracle.com if you need additional information or have any
  26 questions.
  27 -->
  28 </head>
  29 <body>
  30 
  31 Provides a portability layer, that is, a set of ORB APIs
  32 that makes it possible for code generated
  33 by one vendor to run on another vendor's ORB. 
  34 Stubs and other code, generated either from IDL or 
  35 interfaces written in the Java programming language, 
  36 can call into these ORB APIs.
  37 
  38 
  39 
  40 <p>
  41 <a id="unimpl"></a>
  42 <hr>
  43 <h1>CORBA Features Throwing NO_IMPLEMENT() Exceptions</h1>
  44 <hr>
  45 Some methods throw NO_IMPLEMENT() exceptions by default, but ORB vendors
  46 can override them to provide real implementations.  The ORB included in
  47 Sun's release of the Java[tm] Platform, Standard Edition 6, includes 
  48 implementations for the following methods.
  49 
  50 <h2>List of Unimplemented Features in Package
  51 <code>org.omg.CORBA.portable</code></h2>
  52 
  53 <h3>Unimplemented Interfaces in package <code>org.omg.CORBA.portable</code></h3>
  54   <ul>
  55     <li><code>InvokeHandler</code>
  56     <li><code>ResponseHandler</code>
  57   </ul>
  58 
  59 <h3>Unimplemented Methods in package <code>org.omg.CORBA.portable</code></h3>
  60 <ul>
  61 <li><code>InputStream</code>
  62   <ul>
  63     <li><code>public int read()</code>
  64     <li><code>public.math.BigDecimal read_fixed()</code>
  65     <li><code>public org.omg.CORBA.Context read_Context()</code>
  66     <li><code>public  org.omg.CORBA.Object read_Object(java.lang.Class clz)</code>
  67     <li><code>public org.omg.CORBA.ORB orb()</code>
  68   </ul>
  69 <li><code>OutputStream</code>
  70   <ul>
  71     <li><code>public org.omg.CORBA.ORB orb()</code>
  72     <li><code>public void write_Context(org.omg.CORBA.Context ctx,
  73         org.omg.CORBA.ContextList contexts)</code>
  74     <li><code>public void write_fixed(java.math.BigDecimal value)</code>
  75     <li><code>public void write(int b)</code>
  76   </ul>
  77 <li><code>Delegate</code>
  78   <ul>
  79     <li><code>public void releaseReply(org.omg.CORBA.Object self, InputStream input)</code>
  80     <li><code>public InputStream invoke(org.omgl.CORBA.Object self, OutputStream output)</code>
  81     <li><code>public OutputStream request(org.omg.CORBA.Object self, String operation,
  82         boolean responseExpected)</code>
  83     <li><code>public org.omg.CORBA.Object set_policy_override(org.omg.CORBA.Object self,
  84                                         org.omg.CORBA.Policy[] policies,
  85                                         org.omg.CORBA.SetOverrideType set_add)</code>
  86     <li><code>public org.omg.CORBA.DomainManager[] get_domain_managers(
  87                                                 org.omg.CORBA.Objectself)</code>
  88     <li><code>public org.omg.CORBA.Policy get_policy(org.omg.CORBA.Object self,
  89                                          int policy_type)</code>
  90   </ul>
  91 </ul>
  92 
  93 @since JDK1.2
  94 @serial exclude
  95 </body>
  96 </html>