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

changeset 0
7ef37b2cdcad
child 748
6845b95cba6b
equal deleted inserted replaced
-1:000000000000 0:7ef37b2cdcad
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 */
31
32 package org.omg.CORBA_2_3;
33
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 {
39
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 }
48
49
50 /**
51 *
52 */
53 public void unregister_value_factory(String id)
54 {
55 throw new org.omg.CORBA.NO_IMPLEMENT();
56 }
57
58
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 }
66
67
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 }
78
79
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 }
87
88
89 }

mercurial