01: /***** Copyright (c) 1999-2000 Object Management Group. Unlimited rights to
02: duplicate and use this code are hereby granted provided that this
03: copyright notice is included.
04: *****/
05:
06: /***** This class is specifed by the mapping as abstract.
07: A "dummy" implementation is provided so that the "official" org.omg.*
08: packages may be compiled.
09:
10: ORB-vendors shall provide a complete implementation of the class
11: by extending it with a vendor-specific class which
12: provides "real" implementations for all the methods. E.g.
13:
14: package com.acme_orb_vendor.CORBA_2_3;
15: public class ORB extends org.omg.CORBA_2_3 { ... }
16:
17: In order to be conformant the class shall support the signatures
18: specified here, but will have an orb-specific implementation.
19:
20: The class may support additional vendor specific functionality.
21: *****/package org.omg.CORBA_2_5;
22:
23: public abstract class ORB extends org.omg.CORBA_2_3.ORB {
24: public String id() {
25: throw new org.omg.CORBA.NO_IMPLEMENT();
26: }
27:
28: public void register_initial_reference(String object_name,
29: org.omg.CORBA.Object object)
30: throws org.omg.CORBA.ORBPackage.InvalidName {
31: throw new org.omg.CORBA.NO_IMPLEMENT();
32: }
33:
34: public org.omg.CORBA.TypeCode create_local_interface_tc(String id,
35: String name) {
36: throw new org.omg.CORBA.NO_IMPLEMENT();
37: }
38: }
|