src/share/classes/org/omg/CORBA_2_3/ORB.java

Tue, 16 Jan 2018 22:52:07 -0800

author
asaha
date
Tue, 16 Jan 2018 22:52:07 -0800
changeset 1662
65a52284d8a3
parent 158
91006f157c46
child 748
6845b95cba6b
permissions
-rw-r--r--

Merge

     1 /*
     2  * Copyright (c) 1998, 2003, 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  * Licensed Materials - Property of IBM
    27  * RMI-IIOP v1.0
    28  * Copyright IBM Corp. 1998 1999  All Rights Reserved
    29  *
    30  */
    32 package org.omg.CORBA_2_3;
    34 /**
    35  * A class extending <code>org.omg.CORBA.ORB</code> to make the ORB
    36  * portable under the OMG CORBA version 2.3 specification.
    37  */
    38 public abstract class ORB extends org.omg.CORBA.ORB {
    40 /**
    41  *
    42  */
    43     public org.omg.CORBA.portable.ValueFactory register_value_factory(String id,
    44                                                                      org.omg.CORBA.portable.ValueFactory factory)
    45     {
    46         throw new org.omg.CORBA.NO_IMPLEMENT();
    47     }
    50 /**
    51  *
    52  */
    53     public void unregister_value_factory(String id)
    54     {
    55         throw new org.omg.CORBA.NO_IMPLEMENT();
    56     }
    59 /**
    60  *
    61  */
    62     public org.omg.CORBA.portable.ValueFactory lookup_value_factory(String id)
    63     {
    64         throw new org.omg.CORBA.NO_IMPLEMENT();
    65     }
    68 /**
    69  * @see <a href="package-summary.html#unimpl"><code>CORBA_2_3</code> package
    70  *      comments for unimplemented features</a>
    71  */
    72     // always return a ValueDef or throw BAD_PARAM if
    73      // <em>repid</em> does not represent a valuetype
    74      public org.omg.CORBA.Object get_value_def(String repid)
    75                                throws org.omg.CORBA.BAD_PARAM {
    76        throw new org.omg.CORBA.NO_IMPLEMENT();
    77      }
    80 /**
    81  * @see <a href="package-summary.html#unimpl"><code>CORBA_2_3</code> package
    82  *      comments for unimplemented features</a>
    83  */
    84      public void set_delegate(java.lang.Object wrapper) {
    85        throw new org.omg.CORBA.NO_IMPLEMENT();
    86      }
    89 }

mercurial