Merge from mainline.
[official-gcc.git] / libjava / classpath / org / omg / CORBA / Object.java
blob997fab9e8275fcb3514d2983ac15fdde1b3239b5
1 /* Object.java --
2 Copyright (C) 2005 Free Software Foundation, Inc.
4 This file is part of GNU Classpath.
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING. If not, write to the
18 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 02110-1301 USA.
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library. Thus, the terms and
23 conditions of the GNU General Public License cover the whole
24 combination.
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module. An independent module is a module which is not derived from
33 or based on this library. If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so. If you do not wish to do so, delete this
36 exception statement from your version. */
39 package org.omg.CORBA;
41 /**
42 * The CORBA object reference. The object can be either local or remote.
43 * For the local object, the methods of the derived object are called
44 * like on any other java object. For the remote object, the reference
45 * points to the stup (proxy), responsible for the remote invocation.
47 * @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
49 public interface Object
51 /**
52 * Create a request to invoke the method of this object.
54 * @param context a list of additional properties.
55 * @param operation the name of method to be invoked.
56 * @param parameters the method parameters.
57 * @param returns the container for tge method returned value.
59 * @return the created reaquest.
61 Request _create_request(Context context, String operation, NVList parameters,
62 NamedValue returns
65 /**
66 * Create a request to invoke the method of this object, specifying
67 * context list and the list of the expected exception.
69 * @param context a list of additional properties.
70 * @param operation the name of method to be invoked.
71 * @param parameters the method parameters.
72 * @param returns the container for tge method returned value.
73 * @param exceptions the list of the possible exceptions that the method
74 * can throw.
75 * @param ctx_list the list of the context strings that need to be
76 * resolved and send as a context instance.
78 * @return the created reaquest.
80 Request _create_request(Context context, String operation, NVList parameters,
81 NamedValue returns, ExceptionList exceptions,
82 ContextList ctx_list
85 /**
86 * Duplicate the object reference. This does not make much sense for
87 * java platform and is just included for the sake of compliance with
88 * CORBA APIs.
90 * The method may return the object reference itself.
92 * @return as a rule, <code>this</code>.
94 org.omg.CORBA.Object _duplicate();
96 /**
97 * Retrieve the domain managers for this object.
99 * @return the domain managers.
101 DomainManager[] _get_domain_managers();
104 * Get the <code>InterfaceDef</code> for this Object.
106 org.omg.CORBA.Object _get_interface_def();
109 * Returns the {@link Policy}, applying to this object.
111 * @param a_policy_type a type of policy to be obtained.
112 * @return a corresponding Policy object.
114 * @throws BAD_PARAM if the policy of the given type is not
115 * associated with this object, or if it is not supported by this ORB.
117 Policy _get_policy(int a_policy_type)
118 throws BAD_PARAM;
121 * Get the hashcode this object reference. The same hashcode still
122 * does not means that the references are the same. From the other
123 * side, two different references may still refer to the same CORBA
124 * object. The returned value must not change during the object
125 * lifetime.
127 * @param maximum the maximal value to return.
129 * @return the hashcode.
131 int _hash(int maximum);
134 * Check if this object can be referenced by the given repository id.
136 * @param repositoryIdentifer the repository id.
138 * @return true if the passed parameter is a repository id of this
139 * CORBA object.
141 boolean _is_a(String repositoryIdentifer);
144 * Return true if the other object references are equivalent, so far as
145 * it is possible to determine this easily.
147 * @param other the other object reference.
149 * @return true if both references refer the same object, false
150 * if they probably can refer different objects.
152 boolean _is_equivalent(org.omg.CORBA.Object other);
155 * Determines if the server object for this reference has already
156 * been destroyed.
158 * @return true if the object has been destroyed, false otherwise.
160 boolean _non_existent();
163 * Free resoureces, occupied by this reference. The object implementation
164 * is not notified, and the other references to the same object are not
165 * affected.
167 void _release();
170 * Create a request to invoke the method of this CORBA object.
172 * @param operation the name of the method to invoke.
174 * @return the request.
176 Request _request(String operation);
179 * Returns a new object with the new policies either replacing or
180 * extending the current policies, depending on the second parameter.
182 * @param policies the policy additions or replacements.
184 * @param how either {@link SetOverrideType#SET_OVERRIDE} to override the
185 * current policies of {@link SetOverrideType#ADD_OVERRIDE} to replace
186 * them.
188 * @return the new reference with the changed policies.
190 Object _set_policy_override(Policy[] policies, SetOverrideType how);