corba/src/java.corba/share/classes/org/omg/CORBA/LocalObject.java
author avstepan
Sun, 13 Sep 2015 23:31:47 +0300
changeset 32688 936c391804a5
parent 30384 ff19c1d6f92a
permissions -rw-r--r--
8133650: replace some <tt> tags (obsolete in html5) in CORBA docs Reviewed-by: lancea
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
02bb8761fcce Initial load
duke
parents:
diff changeset
     1
/*
29827
aac4782e69ac 8039440: Tidy warnings cleanup for org/omg
avstepan
parents: 25862
diff changeset
     2
 * Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
02bb8761fcce Initial load
duke
parents:
diff changeset
     4
 *
02bb8761fcce Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
02bb8761fcce Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5555
b2b5ed3f0d0d 6943119: Rebrand source copyright notices
ohair
parents: 4
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
4
02bb8761fcce Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5555
b2b5ed3f0d0d 6943119: Rebrand source copyright notices
ohair
parents: 4
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    10
 *
02bb8761fcce Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
02bb8761fcce Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
02bb8761fcce Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
02bb8761fcce Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
02bb8761fcce Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
02bb8761fcce Initial load
duke
parents:
diff changeset
    16
 *
02bb8761fcce Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
02bb8761fcce Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
02bb8761fcce Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
02bb8761fcce Initial load
duke
parents:
diff changeset
    20
 *
5555
b2b5ed3f0d0d 6943119: Rebrand source copyright notices
ohair
parents: 4
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
b2b5ed3f0d0d 6943119: Rebrand source copyright notices
ohair
parents: 4
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
b2b5ed3f0d0d 6943119: Rebrand source copyright notices
ohair
parents: 4
diff changeset
    23
 * questions.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    24
 */
02bb8761fcce Initial load
duke
parents:
diff changeset
    25
02bb8761fcce Initial load
duke
parents:
diff changeset
    26
package org.omg.CORBA;
02bb8761fcce Initial load
duke
parents:
diff changeset
    27
import org.omg.CORBA.portable.*;
02bb8761fcce Initial load
duke
parents:
diff changeset
    28
02bb8761fcce Initial load
duke
parents:
diff changeset
    29
02bb8761fcce Initial load
duke
parents:
diff changeset
    30
/**
30384
ff19c1d6f92a 8079342: some docs cleanup for CORBA - part 2
avstepan
parents: 29827
diff changeset
    31
 * Used as a base class for implementation of a local IDL interface in the
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    32
 * Java language mapping.  It is a class which implements all the operations
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
    33
 * in the {@code org.omg.CORBA.Object} interface.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    34
 * <P>Local interfaces are implemented by using CORBA::LocalObject
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
    35
 * to provide implementations of {@code Object} pseudo
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
    36
 * operations and any other ORB-specific support mechanisms that are
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
    37
 * appropriate for such objects.  Object implementation techniques are
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
    38
 * inherently language-mapping specific.  Therefore, the
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
    39
 * {@code LocalObject} type is not defined in IDL, but is specified
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
    40
 * in each language mapping.
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
    41
 * <P>Methods that do not apply to local objects throw
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
    42
 * an {@code org.omg.CORBA.NO_IMPLEMENT} exception with the message,
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
    43
 * "This is a locally contrained object."  Attempting to use a
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
    44
 * {@code LocalObject} to create a DII request results in NO_IMPLEMENT
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
    45
 * system exception.  Attempting to marshal or stringify a
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
    46
 * {@code LocalObject} results in a MARSHAL system exception.  Narrowing
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
    47
 * and widening references to {@code LocalObjects} must work as for regular
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
    48
 * object references.
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
    49
 * <P>{@code LocalObject} is to be used as the base class of locally
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
    50
 * constrained objects, such as those in the PortableServer module.
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
    51
 * The specification here is based on the CORBA Components
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
    52
 * Volume I - orbos/99-07-01
30384
ff19c1d6f92a 8079342: some docs cleanup for CORBA - part 2
avstepan
parents: 29827
diff changeset
    53
 *
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    54
 * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package
30384
ff19c1d6f92a 8079342: some docs cleanup for CORBA - part 2
avstepan
parents: 29827
diff changeset
    55
 *      comments for unimplemented features</a>
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    56
 */
02bb8761fcce Initial load
duke
parents:
diff changeset
    57
02bb8761fcce Initial load
duke
parents:
diff changeset
    58
public class LocalObject implements org.omg.CORBA.Object
02bb8761fcce Initial load
duke
parents:
diff changeset
    59
{
02bb8761fcce Initial load
duke
parents:
diff changeset
    60
    private static String reason = "This is a locally constrained object.";
02bb8761fcce Initial load
duke
parents:
diff changeset
    61
02bb8761fcce Initial load
duke
parents:
diff changeset
    62
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
    63
     * Constructs a default {@code LocalObject} instance.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    64
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
    65
    public LocalObject() {}
02bb8761fcce Initial load
duke
parents:
diff changeset
    66
02bb8761fcce Initial load
duke
parents:
diff changeset
    67
    /**
30384
ff19c1d6f92a 8079342: some docs cleanup for CORBA - part 2
avstepan
parents: 29827
diff changeset
    68
     * Determines whether the two object references are equivalent,
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    69
     * so far as the ORB can easily determine. Two object references are equivalent
02bb8761fcce Initial load
duke
parents:
diff changeset
    70
     * if they are identical. Two distinct object references which in fact refer to
02bb8761fcce Initial load
duke
parents:
diff changeset
    71
     * the same object are also equivalent. However, ORBs are not required
02bb8761fcce Initial load
duke
parents:
diff changeset
    72
     * to attempt determination of whether two distinct object references
02bb8761fcce Initial load
duke
parents:
diff changeset
    73
     * refer to the same object, since such determination could be impractically
02bb8761fcce Initial load
duke
parents:
diff changeset
    74
     * expensive.
29827
aac4782e69ac 8039440: Tidy warnings cleanup for org/omg
avstepan
parents: 25862
diff changeset
    75
     * <P>Default implementation of the org.omg.CORBA.Object method.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    76
     *
02bb8761fcce Initial load
duke
parents:
diff changeset
    77
     * @param that the object reference with which to check for equivalence
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
    78
     * @return {@code true} if this object reference is known to be
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    79
     *         equivalent to the given object reference.
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
    80
     *         Note that {@code false} indicates only that the two
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    81
     *         object references are distinct, not necessarily that
02bb8761fcce Initial load
duke
parents:
diff changeset
    82
     *         they reference distinct objects.
02bb8761fcce Initial load
duke
parents:
diff changeset
    83
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
    84
    public boolean _is_equivalent(org.omg.CORBA.Object that) {
02bb8761fcce Initial load
duke
parents:
diff changeset
    85
        return equals(that) ;
02bb8761fcce Initial load
duke
parents:
diff changeset
    86
    }
02bb8761fcce Initial load
duke
parents:
diff changeset
    87
02bb8761fcce Initial load
duke
parents:
diff changeset
    88
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
    89
     * Always returns {@code false}.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    90
     * This method is the default implementation of the
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
    91
     * {@code org.omg.CORBA.Object} method.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    92
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
    93
     * @return {@code false}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    94
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
    95
    public boolean _non_existent() {
02bb8761fcce Initial load
duke
parents:
diff changeset
    96
        return false;
02bb8761fcce Initial load
duke
parents:
diff changeset
    97
    }
02bb8761fcce Initial load
duke
parents:
diff changeset
    98
02bb8761fcce Initial load
duke
parents:
diff changeset
    99
    /**
02bb8761fcce Initial load
duke
parents:
diff changeset
   100
     * Returns a hash value that is consistent for the
02bb8761fcce Initial load
duke
parents:
diff changeset
   101
     * lifetime of the object, using the given number as the maximum.
02bb8761fcce Initial load
duke
parents:
diff changeset
   102
     * This method is the default implementation of the
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   103
     * {@code org.omg.CORBA.Object} method.
29827
aac4782e69ac 8039440: Tidy warnings cleanup for org/omg
avstepan
parents: 25862
diff changeset
   104
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   105
     * @param maximum an {@code int} identifying maximum value of
29827
aac4782e69ac 8039440: Tidy warnings cleanup for org/omg
avstepan
parents: 25862
diff changeset
   106
     *                the hashcode
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   107
     * @return this instance's hashcode
02bb8761fcce Initial load
duke
parents:
diff changeset
   108
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   109
    public int _hash(int maximum) {
02bb8761fcce Initial load
duke
parents:
diff changeset
   110
        return hashCode() ;
02bb8761fcce Initial load
duke
parents:
diff changeset
   111
    }
02bb8761fcce Initial load
duke
parents:
diff changeset
   112
02bb8761fcce Initial load
duke
parents:
diff changeset
   113
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   114
     * Throws an {@code org.omg.CORBA.NO_IMPLEMENT} exception with
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   115
     * the message "This is a locally constrained object."  This method
02bb8761fcce Initial load
duke
parents:
diff changeset
   116
     * does not apply to local objects and is therefore not implemented.
02bb8761fcce Initial load
duke
parents:
diff changeset
   117
     * This method is the default implementation of the
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   118
     * {@code org.omg.CORBA.Object} method.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   119
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   120
     * @param repository_id a {@code String}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   121
     * @return NO_IMPLEMENT because this is a locally constrained object
02bb8761fcce Initial load
duke
parents:
diff changeset
   122
     *      and this method does not apply to local objects
02bb8761fcce Initial load
duke
parents:
diff changeset
   123
     * @exception NO_IMPLEMENT because this is a locally constrained object
02bb8761fcce Initial load
duke
parents:
diff changeset
   124
     *      and this method does not apply to local objects
02bb8761fcce Initial load
duke
parents:
diff changeset
   125
     * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package
02bb8761fcce Initial load
duke
parents:
diff changeset
   126
     *      comments for unimplemented features</a>
02bb8761fcce Initial load
duke
parents:
diff changeset
   127
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   128
    public boolean _is_a(String repository_id) {
02bb8761fcce Initial load
duke
parents:
diff changeset
   129
        throw new org.omg.CORBA.NO_IMPLEMENT(reason);
02bb8761fcce Initial load
duke
parents:
diff changeset
   130
    }
02bb8761fcce Initial load
duke
parents:
diff changeset
   131
02bb8761fcce Initial load
duke
parents:
diff changeset
   132
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   133
     * Throws an {@code org.omg.CORBA.NO_IMPLEMENT} exception with
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   134
     * the message "This is a locally constrained object."
02bb8761fcce Initial load
duke
parents:
diff changeset
   135
     * This method is the default implementation of the
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   136
     * {@code org.omg.CORBA.Object} method.
29827
aac4782e69ac 8039440: Tidy warnings cleanup for org/omg
avstepan
parents: 25862
diff changeset
   137
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   138
     * @return a duplicate of this {@code LocalObject} instance.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   139
     * @exception NO_IMPLEMENT
02bb8761fcce Initial load
duke
parents:
diff changeset
   140
     * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package
02bb8761fcce Initial load
duke
parents:
diff changeset
   141
     *      comments for unimplemented features</a>
02bb8761fcce Initial load
duke
parents:
diff changeset
   142
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   143
    public org.omg.CORBA.Object _duplicate() {
02bb8761fcce Initial load
duke
parents:
diff changeset
   144
        throw new org.omg.CORBA.NO_IMPLEMENT(reason);
02bb8761fcce Initial load
duke
parents:
diff changeset
   145
    }
02bb8761fcce Initial load
duke
parents:
diff changeset
   146
02bb8761fcce Initial load
duke
parents:
diff changeset
   147
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   148
     * Throws an {@code org.omg.CORBA.NO_IMPLEMENT} exception with
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   149
     * the message "This is a locally constrained object."
02bb8761fcce Initial load
duke
parents:
diff changeset
   150
     * This method is the default implementation of the
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   151
     * {@code org.omg.CORBA.Object} method.
29827
aac4782e69ac 8039440: Tidy warnings cleanup for org/omg
avstepan
parents: 25862
diff changeset
   152
     *
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   153
     * @exception NO_IMPLEMENT
02bb8761fcce Initial load
duke
parents:
diff changeset
   154
     * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package
02bb8761fcce Initial load
duke
parents:
diff changeset
   155
     *      comments for unimplemented features</a>
02bb8761fcce Initial load
duke
parents:
diff changeset
   156
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   157
    public void _release() {
02bb8761fcce Initial load
duke
parents:
diff changeset
   158
        throw new org.omg.CORBA.NO_IMPLEMENT(reason);
02bb8761fcce Initial load
duke
parents:
diff changeset
   159
    }
02bb8761fcce Initial load
duke
parents:
diff changeset
   160
02bb8761fcce Initial load
duke
parents:
diff changeset
   161
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   162
     * Throws an {@code org.omg.CORBA.NO_IMPLEMENT} exception with
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   163
     * the message "This is a locally constrained object."
02bb8761fcce Initial load
duke
parents:
diff changeset
   164
     * This method is the default implementation of the
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   165
     * {@code org.omg.CORBA.Object} method.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   166
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   167
     * @param operation a {@code String} giving the name of an operation
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   168
     *        to be performed by the request that is returned
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   169
     * @return a {@code Request} object with the given operation
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   170
     * @exception NO_IMPLEMENT
02bb8761fcce Initial load
duke
parents:
diff changeset
   171
     * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package
02bb8761fcce Initial load
duke
parents:
diff changeset
   172
     *      comments for unimplemented features</a>
02bb8761fcce Initial load
duke
parents:
diff changeset
   173
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   174
    public Request _request(String operation) {
02bb8761fcce Initial load
duke
parents:
diff changeset
   175
        throw new org.omg.CORBA.NO_IMPLEMENT(reason);
02bb8761fcce Initial load
duke
parents:
diff changeset
   176
    }
02bb8761fcce Initial load
duke
parents:
diff changeset
   177
02bb8761fcce Initial load
duke
parents:
diff changeset
   178
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   179
     * Throws an {@code org.omg.CORBA.NO_IMPLEMENT} exception with
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   180
     * the message "This is a locally constrained object."
02bb8761fcce Initial load
duke
parents:
diff changeset
   181
     * This method is the default implementation of the
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   182
     * {@code org.omg.CORBA.Object} method.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   183
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   184
     * @param ctx          a {@code Context} object containing
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   185
     *                     a list of properties
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   186
     * @param operation    the {@code String} representing the name of the
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   187
     *                     method to be invoked
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   188
     * @param arg_list     an {@code NVList} containing the actual arguments
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   189
     *                     to the method being invoked
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   190
     * @param result       a {@code NamedValue} object to serve as a
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   191
     *                     container for the method's return value
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   192
     * @return a new {@code Request} object initialized with the given
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   193
     * arguments
02bb8761fcce Initial load
duke
parents:
diff changeset
   194
     * @exception NO_IMPLEMENT
02bb8761fcce Initial load
duke
parents:
diff changeset
   195
     * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package
02bb8761fcce Initial load
duke
parents:
diff changeset
   196
     *      comments for unimplemented features</a>
02bb8761fcce Initial load
duke
parents:
diff changeset
   197
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   198
    public Request _create_request(Context ctx,
02bb8761fcce Initial load
duke
parents:
diff changeset
   199
                                   String operation,
02bb8761fcce Initial load
duke
parents:
diff changeset
   200
                                   NVList arg_list,
02bb8761fcce Initial load
duke
parents:
diff changeset
   201
                                   NamedValue result) {
02bb8761fcce Initial load
duke
parents:
diff changeset
   202
        throw new org.omg.CORBA.NO_IMPLEMENT(reason);
02bb8761fcce Initial load
duke
parents:
diff changeset
   203
    }
02bb8761fcce Initial load
duke
parents:
diff changeset
   204
02bb8761fcce Initial load
duke
parents:
diff changeset
   205
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   206
     * Throws an {@code org.omg.CORBA.NO_IMPLEMENT} exception with
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   207
     * the message "This is a locally constrained object."
02bb8761fcce Initial load
duke
parents:
diff changeset
   208
     * This method is the default implementation of the
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   209
     * {@code org.omg.CORBA.Object} method.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   210
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   211
     * @param ctx          a {@code Context} object containing
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   212
     *                     a list of properties
02bb8761fcce Initial load
duke
parents:
diff changeset
   213
     * @param operation    the name of the method to be invoked
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   214
     * @param arg_list     an {@code NVList} containing the actual arguments
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   215
     *                     to the method being invoked
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   216
     * @param result       a {@code NamedValue} object to serve as a
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   217
     *                     container for the method's return value
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   218
     * @param exceptions   an {@code ExceptionList} object containing a
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   219
     *                     list of possible exceptions the method can throw
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   220
     * @param contexts     a {@code ContextList} object containing a list of
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   221
     *                     context strings that need to be resolved and sent
02bb8761fcce Initial load
duke
parents:
diff changeset
   222
     *                     with the
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   223
     *                     {@code Request} instance
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   224
     * @return the new {@code Request} object initialized with the given
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   225
     * arguments
02bb8761fcce Initial load
duke
parents:
diff changeset
   226
     * @exception NO_IMPLEMENT
02bb8761fcce Initial load
duke
parents:
diff changeset
   227
     * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package
02bb8761fcce Initial load
duke
parents:
diff changeset
   228
     *      comments for unimplemented features</a>
02bb8761fcce Initial load
duke
parents:
diff changeset
   229
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   230
    public Request _create_request(Context ctx,
02bb8761fcce Initial load
duke
parents:
diff changeset
   231
                                   String operation,
02bb8761fcce Initial load
duke
parents:
diff changeset
   232
                                   NVList arg_list,
02bb8761fcce Initial load
duke
parents:
diff changeset
   233
                                   NamedValue result,
02bb8761fcce Initial load
duke
parents:
diff changeset
   234
                                   ExceptionList exceptions,
02bb8761fcce Initial load
duke
parents:
diff changeset
   235
                                   ContextList contexts) {
02bb8761fcce Initial load
duke
parents:
diff changeset
   236
        throw new org.omg.CORBA.NO_IMPLEMENT(reason);
02bb8761fcce Initial load
duke
parents:
diff changeset
   237
    }
02bb8761fcce Initial load
duke
parents:
diff changeset
   238
02bb8761fcce Initial load
duke
parents:
diff changeset
   239
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   240
     * Throws an {@code org.omg.CORBA.NO_IMPLEMENT} exception with
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   241
     * the message "This is a locally constrained object." This method
02bb8761fcce Initial load
duke
parents:
diff changeset
   242
     * does not apply to local objects and is therefore not implemented.
02bb8761fcce Initial load
duke
parents:
diff changeset
   243
     * This method is the default implementation of the
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   244
     * {@code org.omg.CORBA.Object} method.
29827
aac4782e69ac 8039440: Tidy warnings cleanup for org/omg
avstepan
parents: 25862
diff changeset
   245
     *
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   246
     * @return NO_IMPLEMENT because this is a locally constrained object
02bb8761fcce Initial load
duke
parents:
diff changeset
   247
     *      and this method does not apply to local objects
02bb8761fcce Initial load
duke
parents:
diff changeset
   248
     * @exception NO_IMPLEMENT because this is a locally constrained object
02bb8761fcce Initial load
duke
parents:
diff changeset
   249
     *      and this method does not apply to local objects
02bb8761fcce Initial load
duke
parents:
diff changeset
   250
     * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package
02bb8761fcce Initial load
duke
parents:
diff changeset
   251
     *      comments for unimplemented features</a>
02bb8761fcce Initial load
duke
parents:
diff changeset
   252
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   253
    public org.omg.CORBA.Object _get_interface()
02bb8761fcce Initial load
duke
parents:
diff changeset
   254
    {
02bb8761fcce Initial load
duke
parents:
diff changeset
   255
        throw new org.omg.CORBA.NO_IMPLEMENT(reason);
02bb8761fcce Initial load
duke
parents:
diff changeset
   256
    }
02bb8761fcce Initial load
duke
parents:
diff changeset
   257
02bb8761fcce Initial load
duke
parents:
diff changeset
   258
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   259
     * Throws an {@code org.omg.CORBA.NO_IMPLEMENT} exception with
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   260
     * the message "This is a locally constrained object."
02bb8761fcce Initial load
duke
parents:
diff changeset
   261
     * This method is the default implementation of the
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   262
     * {@code org.omg.CORBA.Object} method.
29827
aac4782e69ac 8039440: Tidy warnings cleanup for org/omg
avstepan
parents: 25862
diff changeset
   263
     *
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   264
     * @exception NO_IMPLEMENT
02bb8761fcce Initial load
duke
parents:
diff changeset
   265
     * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package
02bb8761fcce Initial load
duke
parents:
diff changeset
   266
     *      comments for unimplemented features</a>
02bb8761fcce Initial load
duke
parents:
diff changeset
   267
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   268
    public org.omg.CORBA.Object _get_interface_def()
02bb8761fcce Initial load
duke
parents:
diff changeset
   269
    {
02bb8761fcce Initial load
duke
parents:
diff changeset
   270
        // First try to call the delegate implementation class's
02bb8761fcce Initial load
duke
parents:
diff changeset
   271
        // "Object get_interface_def(..)" method (will work for JDK1.2
02bb8761fcce Initial load
duke
parents:
diff changeset
   272
        // ORBs).
02bb8761fcce Initial load
duke
parents:
diff changeset
   273
        // Else call the delegate implementation class's
02bb8761fcce Initial load
duke
parents:
diff changeset
   274
        // "InterfaceDef get_interface(..)" method using reflection
02bb8761fcce Initial load
duke
parents:
diff changeset
   275
        // (will work for pre-JDK1.2 ORBs).
02bb8761fcce Initial load
duke
parents:
diff changeset
   276
02bb8761fcce Initial load
duke
parents:
diff changeset
   277
        throw new org.omg.CORBA.NO_IMPLEMENT(reason);
02bb8761fcce Initial load
duke
parents:
diff changeset
   278
    }
02bb8761fcce Initial load
duke
parents:
diff changeset
   279
02bb8761fcce Initial load
duke
parents:
diff changeset
   280
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   281
     * Throws an {@code org.omg.CORBA.NO_IMPLEMENT} exception with
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   282
     * the message "This is a locally constrained object."
02bb8761fcce Initial load
duke
parents:
diff changeset
   283
     * This method is the default implementation of the
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   284
     * {@code org.omg.CORBA.Object} method.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   285
     * @return the ORB instance that created the Delegate contained in this
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   286
     * {@code ObjectImpl}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   287
     * @exception NO_IMPLEMENT
02bb8761fcce Initial load
duke
parents:
diff changeset
   288
     * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package
02bb8761fcce Initial load
duke
parents:
diff changeset
   289
     *      comments for unimplemented features</a>
02bb8761fcce Initial load
duke
parents:
diff changeset
   290
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   291
    public org.omg.CORBA.ORB _orb() {
02bb8761fcce Initial load
duke
parents:
diff changeset
   292
        throw new org.omg.CORBA.NO_IMPLEMENT(reason);
02bb8761fcce Initial load
duke
parents:
diff changeset
   293
    }
02bb8761fcce Initial load
duke
parents:
diff changeset
   294
02bb8761fcce Initial load
duke
parents:
diff changeset
   295
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   296
     * Throws an {@code org.omg.CORBA.NO_IMPLEMENT} exception with
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   297
     * the message "This is a locally constrained object." This method
02bb8761fcce Initial load
duke
parents:
diff changeset
   298
     * does not apply to local objects and is therefore not implemented.
02bb8761fcce Initial load
duke
parents:
diff changeset
   299
     * This method is the default implementation of the
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   300
     * {@code org.omg.CORBA.Object} method.
29827
aac4782e69ac 8039440: Tidy warnings cleanup for org/omg
avstepan
parents: 25862
diff changeset
   301
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   302
     * @param policy_type  an {@code int}
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   303
     * @return NO_IMPLEMENT because this is a locally constrained object
02bb8761fcce Initial load
duke
parents:
diff changeset
   304
     *      and this method does not apply to local objects
02bb8761fcce Initial load
duke
parents:
diff changeset
   305
     * @exception NO_IMPLEMENT because this is a locally constrained object
02bb8761fcce Initial load
duke
parents:
diff changeset
   306
     *      and this method does not apply to local objects
02bb8761fcce Initial load
duke
parents:
diff changeset
   307
     * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package
02bb8761fcce Initial load
duke
parents:
diff changeset
   308
     *      comments for unimplemented features</a>
02bb8761fcce Initial load
duke
parents:
diff changeset
   309
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   310
    public org.omg.CORBA.Policy _get_policy(int policy_type) {
02bb8761fcce Initial load
duke
parents:
diff changeset
   311
        throw new org.omg.CORBA.NO_IMPLEMENT(reason);
02bb8761fcce Initial load
duke
parents:
diff changeset
   312
    }
02bb8761fcce Initial load
duke
parents:
diff changeset
   313
02bb8761fcce Initial load
duke
parents:
diff changeset
   314
02bb8761fcce Initial load
duke
parents:
diff changeset
   315
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   316
     * Throws an {@code org.omg.CORBA.NO_IMPLEMENT} exception with
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   317
     * the message "This is a locally constrained object." This method
02bb8761fcce Initial load
duke
parents:
diff changeset
   318
     * does not apply to local objects and is therefore not implemented.
02bb8761fcce Initial load
duke
parents:
diff changeset
   319
     * This method is the default implementation of the
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   320
     * {@code org.omg.CORBA.Object} method.
29827
aac4782e69ac 8039440: Tidy warnings cleanup for org/omg
avstepan
parents: 25862
diff changeset
   321
     *
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   322
     * @exception NO_IMPLEMENT
02bb8761fcce Initial load
duke
parents:
diff changeset
   323
     * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package
02bb8761fcce Initial load
duke
parents:
diff changeset
   324
     *      comments for unimplemented features</a>
02bb8761fcce Initial load
duke
parents:
diff changeset
   325
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   326
    public org.omg.CORBA.DomainManager[] _get_domain_managers() {
02bb8761fcce Initial load
duke
parents:
diff changeset
   327
        throw new org.omg.CORBA.NO_IMPLEMENT(reason);
02bb8761fcce Initial load
duke
parents:
diff changeset
   328
    }
02bb8761fcce Initial load
duke
parents:
diff changeset
   329
02bb8761fcce Initial load
duke
parents:
diff changeset
   330
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   331
     * Throws an {@code org.omg.CORBA.NO_IMPLEMENT} exception with
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   332
     * the message "This is a locally constrained object." This method
02bb8761fcce Initial load
duke
parents:
diff changeset
   333
     * does not apply to local objects and is therefore not implemented.
02bb8761fcce Initial load
duke
parents:
diff changeset
   334
     * This method is the default implementation of the
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   335
     * {@code org.omg.CORBA.Object} method.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   336
     *
02bb8761fcce Initial load
duke
parents:
diff changeset
   337
     * @param policies an array
02bb8761fcce Initial load
duke
parents:
diff changeset
   338
     * @param set_add a flag
02bb8761fcce Initial load
duke
parents:
diff changeset
   339
     * @return NO_IMPLEMENT because this is a locally constrained object
02bb8761fcce Initial load
duke
parents:
diff changeset
   340
     *      and this method does not apply to local objects
02bb8761fcce Initial load
duke
parents:
diff changeset
   341
     * @exception NO_IMPLEMENT because this is a locally constrained object
02bb8761fcce Initial load
duke
parents:
diff changeset
   342
     *      and this method does not apply to local objects
02bb8761fcce Initial load
duke
parents:
diff changeset
   343
     * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package
02bb8761fcce Initial load
duke
parents:
diff changeset
   344
     *      comments for unimplemented features</a>
02bb8761fcce Initial load
duke
parents:
diff changeset
   345
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   346
    public org.omg.CORBA.Object
02bb8761fcce Initial load
duke
parents:
diff changeset
   347
        _set_policy_override(org.omg.CORBA.Policy[] policies,
02bb8761fcce Initial load
duke
parents:
diff changeset
   348
                             org.omg.CORBA.SetOverrideType set_add) {
02bb8761fcce Initial load
duke
parents:
diff changeset
   349
        throw new org.omg.CORBA.NO_IMPLEMENT(reason);
02bb8761fcce Initial load
duke
parents:
diff changeset
   350
    }
02bb8761fcce Initial load
duke
parents:
diff changeset
   351
02bb8761fcce Initial load
duke
parents:
diff changeset
   352
02bb8761fcce Initial load
duke
parents:
diff changeset
   353
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   354
     * Throws an {@code org.omg.CORBA.NO_IMPLEMENT} exception with
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   355
     * the message "This is a locally constrained object."
02bb8761fcce Initial load
duke
parents:
diff changeset
   356
     * This method is the default implementation of the
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   357
     * {@code org.omg.CORBA.Object} method.<P>
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   358
     * Returns {@code true} for this {@code LocalObject} instance.
29827
aac4782e69ac 8039440: Tidy warnings cleanup for org/omg
avstepan
parents: 25862
diff changeset
   359
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   360
     * @return {@code true} always
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   361
     * @exception NO_IMPLEMENT
02bb8761fcce Initial load
duke
parents:
diff changeset
   362
     * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package
02bb8761fcce Initial load
duke
parents:
diff changeset
   363
     *      comments for unimplemented features</a>
02bb8761fcce Initial load
duke
parents:
diff changeset
   364
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   365
    public boolean _is_local() {
02bb8761fcce Initial load
duke
parents:
diff changeset
   366
        throw new org.omg.CORBA.NO_IMPLEMENT(reason);
02bb8761fcce Initial load
duke
parents:
diff changeset
   367
    }
02bb8761fcce Initial load
duke
parents:
diff changeset
   368
02bb8761fcce Initial load
duke
parents:
diff changeset
   369
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   370
     * Throws an {@code org.omg.CORBA.NO_IMPLEMENT} exception with
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   371
     * the message "This is a locally constrained object."
02bb8761fcce Initial load
duke
parents:
diff changeset
   372
     * This method is the default implementation of the
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   373
     * {@code org.omg.CORBA.Object} method.
29827
aac4782e69ac 8039440: Tidy warnings cleanup for org/omg
avstepan
parents: 25862
diff changeset
   374
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   375
     * @param operation a {@code String} indicating which operation
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   376
     *                  to preinvoke
02bb8761fcce Initial load
duke
parents:
diff changeset
   377
     * @param expectedType the class of the type of operation mentioned above
02bb8761fcce Initial load
duke
parents:
diff changeset
   378
     * @return NO_IMPLEMENT because this is a locally constrained object
02bb8761fcce Initial load
duke
parents:
diff changeset
   379
     *      and this method does not apply to local objects
02bb8761fcce Initial load
duke
parents:
diff changeset
   380
     * @exception NO_IMPLEMENT because this is a locally constrained object
02bb8761fcce Initial load
duke
parents:
diff changeset
   381
     *      and this method does not apply to local object
02bb8761fcce Initial load
duke
parents:
diff changeset
   382
     * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package
02bb8761fcce Initial load
duke
parents:
diff changeset
   383
     *      comments for unimplemented features</a>
02bb8761fcce Initial load
duke
parents:
diff changeset
   384
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   385
    public ServantObject _servant_preinvoke(String operation,
02bb8761fcce Initial load
duke
parents:
diff changeset
   386
                                            Class expectedType) {
02bb8761fcce Initial load
duke
parents:
diff changeset
   387
        throw new org.omg.CORBA.NO_IMPLEMENT(reason);
02bb8761fcce Initial load
duke
parents:
diff changeset
   388
    }
02bb8761fcce Initial load
duke
parents:
diff changeset
   389
02bb8761fcce Initial load
duke
parents:
diff changeset
   390
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   391
     * Throws an {@code org.omg.CORBA.NO_IMPLEMENT} exception with
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   392
     * the message "This is a locally constrained object."
02bb8761fcce Initial load
duke
parents:
diff changeset
   393
     * This method is the default implementation of the
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   394
     * {@code org.omg.CORBA.Object} method.
29827
aac4782e69ac 8039440: Tidy warnings cleanup for org/omg
avstepan
parents: 25862
diff changeset
   395
     *
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   396
     * @param servant the servant object on which to post-invoke
02bb8761fcce Initial load
duke
parents:
diff changeset
   397
     * @exception NO_IMPLEMENT
02bb8761fcce Initial load
duke
parents:
diff changeset
   398
     * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package
02bb8761fcce Initial load
duke
parents:
diff changeset
   399
     *      comments for unimplemented features</a>
02bb8761fcce Initial load
duke
parents:
diff changeset
   400
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   401
    public void _servant_postinvoke(ServantObject servant) {
02bb8761fcce Initial load
duke
parents:
diff changeset
   402
        throw new org.omg.CORBA.NO_IMPLEMENT(reason);
02bb8761fcce Initial load
duke
parents:
diff changeset
   403
    }
02bb8761fcce Initial load
duke
parents:
diff changeset
   404
02bb8761fcce Initial load
duke
parents:
diff changeset
   405
    /*
02bb8761fcce Initial load
duke
parents:
diff changeset
   406
     * The following methods were added by orbos/98-04-03: Java to IDL
02bb8761fcce Initial load
duke
parents:
diff changeset
   407
     * Mapping. These are used by RMI over IIOP.
02bb8761fcce Initial load
duke
parents:
diff changeset
   408
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   409
02bb8761fcce Initial load
duke
parents:
diff changeset
   410
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   411
     * Throws an {@code org.omg.CORBA.NO_IMPLEMENT} exception with
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   412
     * the message "This is a locally constrained object."
02bb8761fcce Initial load
duke
parents:
diff changeset
   413
     * This method is the default implementation of the
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   414
     * {@code org.omg.CORBA.Object} method.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   415
     * <P>Called by a stub to obtain an OutputStream for
02bb8761fcce Initial load
duke
parents:
diff changeset
   416
     * marshaling arguments. The stub must supply the operation name,
29827
aac4782e69ac 8039440: Tidy warnings cleanup for org/omg
avstepan
parents: 25862
diff changeset
   417
     * and indicate if a response is expected (i.e is this a oneway call).
aac4782e69ac 8039440: Tidy warnings cleanup for org/omg
avstepan
parents: 25862
diff changeset
   418
     *
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   419
     * @param operation the name of the operation being requested
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   420
     * @param responseExpected {@code true} if a response is expected,
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   421
     *                         {@code false} if it is a one-way call
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   422
     * @return NO_IMPLEMENT because this is a locally constrained object
02bb8761fcce Initial load
duke
parents:
diff changeset
   423
     *      and this method does not apply to local objects
02bb8761fcce Initial load
duke
parents:
diff changeset
   424
     * @exception NO_IMPLEMENT because this is a locally constrained object
02bb8761fcce Initial load
duke
parents:
diff changeset
   425
     *      and this method does not apply to local objects
02bb8761fcce Initial load
duke
parents:
diff changeset
   426
     * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package
02bb8761fcce Initial load
duke
parents:
diff changeset
   427
     *      comments for unimplemented features</a>
02bb8761fcce Initial load
duke
parents:
diff changeset
   428
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   429
    public OutputStream _request(String operation,
02bb8761fcce Initial load
duke
parents:
diff changeset
   430
                                 boolean responseExpected) {
02bb8761fcce Initial load
duke
parents:
diff changeset
   431
        throw new org.omg.CORBA.NO_IMPLEMENT(reason);
02bb8761fcce Initial load
duke
parents:
diff changeset
   432
    }
02bb8761fcce Initial load
duke
parents:
diff changeset
   433
02bb8761fcce Initial load
duke
parents:
diff changeset
   434
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   435
     * Throws an {@code org.omg.CORBA.NO_IMPLEMENT} exception with
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   436
     * the message "This is a locally constrained object."
02bb8761fcce Initial load
duke
parents:
diff changeset
   437
     * This method is the default implementation of the
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   438
     * {@code org.omg.CORBA.Object} method.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   439
     * <P>Called to invoke an operation. The stub provides an
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   440
     * {@code OutputStream} that was previously returned by a
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   441
     * {@code _request()}
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   442
     * call. {@code _invoke} returns an {@code InputStream} which
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   443
     * contains the
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   444
     * marshaled reply. If an exception occurs, {@code _invoke} may throw an
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   445
     * {@code ApplicationException} object which contains an
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   446
     * {@code InputStream} from
29827
aac4782e69ac 8039440: Tidy warnings cleanup for org/omg
avstepan
parents: 25862
diff changeset
   447
     * which the user exception state may be unmarshaled.
aac4782e69ac 8039440: Tidy warnings cleanup for org/omg
avstepan
parents: 25862
diff changeset
   448
     *
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   449
     * @param output the {@code OutputStream} to invoke
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   450
     * @return NO_IMPLEMENT because this is a locally constrained object
02bb8761fcce Initial load
duke
parents:
diff changeset
   451
     *      and this method does not apply to local objects
02bb8761fcce Initial load
duke
parents:
diff changeset
   452
     * @throws ApplicationException If an exception occurs,
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   453
     * {@code _invoke} may throw an
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   454
     * {@code ApplicationException} object which contains
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   455
     * an {@code InputStream} from
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   456
     * which the user exception state may be unmarshaled.
02bb8761fcce Initial load
duke
parents:
diff changeset
   457
     * @throws RemarshalException If an exception occurs,
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   458
     * {@code _invoke} may throw an
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   459
     * {@code ApplicationException} object which contains
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   460
     * an {@code InputStream} from
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   461
     * which the user exception state may be unmarshaled.
02bb8761fcce Initial load
duke
parents:
diff changeset
   462
     * @exception NO_IMPLEMENT because this is a locally constrained object
02bb8761fcce Initial load
duke
parents:
diff changeset
   463
     *      and this method does not apply to local objects
02bb8761fcce Initial load
duke
parents:
diff changeset
   464
     * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package
02bb8761fcce Initial load
duke
parents:
diff changeset
   465
     *      comments for unimplemented features</a>
02bb8761fcce Initial load
duke
parents:
diff changeset
   466
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   467
    public InputStream _invoke(OutputStream output)
02bb8761fcce Initial load
duke
parents:
diff changeset
   468
        throws ApplicationException, RemarshalException
02bb8761fcce Initial load
duke
parents:
diff changeset
   469
    {
02bb8761fcce Initial load
duke
parents:
diff changeset
   470
        throw new org.omg.CORBA.NO_IMPLEMENT(reason);
02bb8761fcce Initial load
duke
parents:
diff changeset
   471
    }
02bb8761fcce Initial load
duke
parents:
diff changeset
   472
02bb8761fcce Initial load
duke
parents:
diff changeset
   473
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   474
     * Throws an {@code org.omg.CORBA.NO_IMPLEMENT} exception with
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   475
     * the message "This is a locally constrained object."
02bb8761fcce Initial load
duke
parents:
diff changeset
   476
     * This method is the default implementation of the
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   477
     * {@code org.omg.CORBA.Object} method.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   478
     * <P>May optionally be called by a stub to release a
02bb8761fcce Initial load
duke
parents:
diff changeset
   479
     * reply stream back to the ORB when the unmarshaling has
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   480
     * completed. The stub passes the {@code InputStream} returned by
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   481
     * {@code _invoke()} or
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   482
     * {@code ApplicationException.getInputStream()}.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   483
     * A null
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   484
     * value may also be passed to {@code _releaseReply}, in which case the
29827
aac4782e69ac 8039440: Tidy warnings cleanup for org/omg
avstepan
parents: 25862
diff changeset
   485
     * method is a no-op.
aac4782e69ac 8039440: Tidy warnings cleanup for org/omg
avstepan
parents: 25862
diff changeset
   486
     *
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   487
     * @param input the reply stream back to the ORB or null
02bb8761fcce Initial load
duke
parents:
diff changeset
   488
     * @exception NO_IMPLEMENT
02bb8761fcce Initial load
duke
parents:
diff changeset
   489
     * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package
02bb8761fcce Initial load
duke
parents:
diff changeset
   490
     *      comments for unimplemented features</a>
02bb8761fcce Initial load
duke
parents:
diff changeset
   491
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   492
    public void _releaseReply(InputStream input) {
02bb8761fcce Initial load
duke
parents:
diff changeset
   493
        throw new org.omg.CORBA.NO_IMPLEMENT(reason);
02bb8761fcce Initial load
duke
parents:
diff changeset
   494
    }
02bb8761fcce Initial load
duke
parents:
diff changeset
   495
02bb8761fcce Initial load
duke
parents:
diff changeset
   496
    /**
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   497
     * Throws an {@code org.omg.CORBA.NO_IMPLEMENT} exception with
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   498
     * the message "This is a locally constrained object." This method
02bb8761fcce Initial load
duke
parents:
diff changeset
   499
     * does not apply to local objects and is therefore not implemented.
02bb8761fcce Initial load
duke
parents:
diff changeset
   500
     * This method is the default implementation of the
32688
936c391804a5 8133650: replace some <tt> tags (obsolete in html5) in CORBA docs
avstepan
parents: 30384
diff changeset
   501
     * {@code org.omg.CORBA.Object} method.
29827
aac4782e69ac 8039440: Tidy warnings cleanup for org/omg
avstepan
parents: 25862
diff changeset
   502
     *
4
02bb8761fcce Initial load
duke
parents:
diff changeset
   503
     * @return NO_IMPLEMENT because this is a locally constrained object
02bb8761fcce Initial load
duke
parents:
diff changeset
   504
     *      and this method does not apply to local objects
02bb8761fcce Initial load
duke
parents:
diff changeset
   505
     * @exception NO_IMPLEMENT because this is a locally constrained object
02bb8761fcce Initial load
duke
parents:
diff changeset
   506
     *      and this method does not apply to local objects
02bb8761fcce Initial load
duke
parents:
diff changeset
   507
     * @see <a href="package-summary.html#unimpl"><code>CORBA</code> package
02bb8761fcce Initial load
duke
parents:
diff changeset
   508
     *      comments for unimplemented features</a>
02bb8761fcce Initial load
duke
parents:
diff changeset
   509
     */
02bb8761fcce Initial load
duke
parents:
diff changeset
   510
02bb8761fcce Initial load
duke
parents:
diff changeset
   511
    public boolean validate_connection() {
02bb8761fcce Initial load
duke
parents:
diff changeset
   512
        throw new org.omg.CORBA.NO_IMPLEMENT(reason);
02bb8761fcce Initial load
duke
parents:
diff changeset
   513
    }
02bb8761fcce Initial load
duke
parents:
diff changeset
   514
}