jdk/test/org/omg/CORBA/TestOrbImpl.java
author lana
Tue, 23 May 2017 21:11:42 +0000
changeset 45187 331a6542b5b8
parent 43706 cc2552ae2866
permissions -rw-r--r--
Added tag jdk-10+7 for changeset d554736d963e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
43706
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
     1
/*
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
     2
 * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
     4
 *
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
     7
 * published by the Free Software Foundation.
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
     8
 *
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    13
 * accompanied this code).
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    14
 *
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    18
 *
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    21
 * questions.
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    22
 */
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    23
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    24
import java.applet.Applet;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    25
import java.util.Properties;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    26
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    27
import org.omg.CORBA.Any;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    28
import org.omg.CORBA.Context;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    29
import org.omg.CORBA.ContextList;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    30
import org.omg.CORBA.Environment;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    31
import org.omg.CORBA.ExceptionList;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    32
import org.omg.CORBA.NVList;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    33
import org.omg.CORBA.NamedValue;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    34
import org.omg.CORBA.ORB;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    35
import org.omg.CORBA.Object;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    36
import org.omg.CORBA.Request;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    37
import org.omg.CORBA.StructMember;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    38
import org.omg.CORBA.TCKind;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    39
import org.omg.CORBA.TypeCode;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    40
import org.omg.CORBA.UnionMember;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    41
import org.omg.CORBA.WrongTransaction;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    42
import org.omg.CORBA.ORBPackage.InvalidName;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    43
import org.omg.CORBA.portable.OutputStream;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    44
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    45
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    46
public class TestOrbImpl extends ORB{
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    47
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    48
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    49
    protected void set_parameters(String[] args, Properties props) {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    50
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    51
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    52
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    53
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    54
    protected void set_parameters(Applet app, Properties props) {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    55
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    56
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    57
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    58
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    59
    public String[] list_initial_services() {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    60
        return null;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    61
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    62
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    63
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    64
    public Object resolve_initial_references(String object_name)
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    65
            throws InvalidName {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    66
        return null;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    67
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    68
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    69
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    70
    public String object_to_string(Object obj) {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    71
        return null;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    72
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    73
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    74
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    75
    public Object string_to_object(String str) {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    76
        return null;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    77
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    78
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    79
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    80
    public NVList create_list(int count) {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    81
        return null;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    82
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    83
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    84
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    85
    public NamedValue create_named_value(String s, Any any, int flags) {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    86
        return null;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    87
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    88
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    89
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    90
    public ExceptionList create_exception_list() {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    91
        return null;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    92
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    93
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    94
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    95
    public ContextList create_context_list() {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    96
        return null;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    97
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    98
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
    99
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   100
    public Context get_default_context() {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   101
        return null;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   102
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   103
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   104
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   105
    public Environment create_environment() {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   106
        return null;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   107
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   108
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   109
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   110
    public OutputStream create_output_stream() {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   111
        return null;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   112
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   113
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   114
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   115
    public void send_multiple_requests_oneway(Request[] req) {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   116
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   117
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   118
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   119
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   120
    public void send_multiple_requests_deferred(Request[] req) {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   121
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   122
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   123
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   124
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   125
    public boolean poll_next_response() {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   126
        return false;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   127
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   128
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   129
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   130
    public Request get_next_response() throws WrongTransaction {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   131
        return null;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   132
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   133
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   134
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   135
    public TypeCode get_primitive_tc(TCKind tcKind) {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   136
        return null;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   137
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   138
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   139
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   140
    public TypeCode create_struct_tc(String id, String name,
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   141
            StructMember[] members) {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   142
        return null;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   143
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   144
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   145
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   146
    public TypeCode create_union_tc(String id, String name,
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   147
            TypeCode discriminator_type, UnionMember[] members) {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   148
        return null;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   149
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   150
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   151
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   152
    public TypeCode create_enum_tc(String id, String name, String[] members) {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   153
        return null;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   154
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   155
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   156
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   157
    public TypeCode create_alias_tc(String id, String name,
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   158
            TypeCode original_type) {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   159
        return null;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   160
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   161
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   162
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   163
    public TypeCode create_exception_tc(String id, String name,
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   164
            StructMember[] members) {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   165
        return null;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   166
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   167
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   168
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   169
    public TypeCode create_interface_tc(String id, String name) {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   170
        return null;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   171
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   172
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   173
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   174
    public TypeCode create_string_tc(int bound) {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   175
        return null;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   176
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   177
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   178
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   179
    public TypeCode create_wstring_tc(int bound) {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   180
        return null;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   181
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   182
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   183
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   184
    public TypeCode create_sequence_tc(int bound, TypeCode element_type) {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   185
        return null;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   186
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   187
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   188
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   189
    public TypeCode create_recursive_sequence_tc(int bound, int offset) {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   190
        return null;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   191
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   192
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   193
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   194
    public TypeCode create_array_tc(int length, TypeCode element_type) {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   195
        return null;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   196
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   197
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   198
    @Override
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   199
    public Any create_any() {
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   200
        return null;
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   201
    }
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   202
cc2552ae2866 8049375: Extend how the org.omg.CORBA.ORB handles the search for orb.properties
msheppar
parents:
diff changeset
   203
}