org.omg.CORBA.portable
public abstract class Delegate extends Object
Method Summary | |
---|---|
abstract Request | create_request(Object target, Context context, String operation, NVList parameters, NamedValue returns)
Create a request to invoke the method of this object.
|
abstract Request | create_request(Object target, Context context, String operation, NVList parameters, NamedValue returns, ExceptionList exceptions, ContextList ctx_list)
Create a request to invoke the method of this object, specifying
context list and the list of the expected exception.
|
abstract Object | duplicate(Object target)
Duplicate the object reference. |
boolean | equals(Object self, Object other)
Compares two objects for equality. |
DomainManager[] | get_domain_managers(Object target)
Retrieve the domain managers for this object.
|
abstract Object | get_interface_def(Object target) |
Policy | get_policy(Object target, int a_policy_type)
Returns the {@link Policy}, applying to this object.
|
abstract int | hash(Object target, int maximum)
Get the hashcode this object reference. |
int | hashCode(Object target)
Return the hashcode for this CORBA object. |
InputStream | invoke(Object target, OutputStream output)
Invoke the operation.
|
abstract boolean | is_a(Object target, String repositoryIdentifer)
Check if this object can be referenced by the given repository id.
|
abstract boolean | is_equivalent(Object target, Object other)
Return true if the other object references are equivalent, so far as
it is possible to determine this easily.
|
boolean | is_local(Object self)
Returns true if the object is local.
|
abstract boolean | non_existent(Object target)
Determines if the server object for this reference has already
been destroyed.
|
ORB | orb(Object target)
Provides the reference to ORB.
|
abstract void | release(Object target)
Free resoureces, occupied by this reference. |
void | releaseReply(Object target, InputStream input)
Release the reply stream back to ORB after finishing reading the data
from it.
|
abstract Request | request(Object target, String operation)
Create a request to invoke the method of this CORBA object.
|
OutputStream | request(Object target, String operation, boolean response_expected)
Create a request to invoke the method of this CORBA object.
|
void | servant_postinvoke(Object self, ServantObject servant)
This method is always called after invoking the operation on the
local servant.
|
ServantObject | servant_preinvoke(Object self, String operation, Class expectedType)
Returns a servant that should be used for this request.
|
Object | set_policy_override(Object target, Policy[] policies, SetOverrideType how)
Returns a new object with the new policies either replacing or
extending the current policies, depending on the second parameter.
|
String | toString(Object self)
Return a string representation of the passed object.
|
Parameters: target the CORBA object, to that this operation must be applied. context a list of additional properties. operation the name of method to be invoked. parameters the method parameters. returns the container for tge method returned value.
Returns: the created reaquest.
Parameters: target the CORBA object, to that this operation must be applied. context a list of additional properties. operation the name of method to be invoked. parameters the method parameters. returns the container for tge method returned value. exceptions the list of the possible exceptions that the method can throw. ctx_list the list of the context strings that need to be resolved and send as a context instance.
Returns: the created reaquest.
Parameters: target the CORBA object, to that this operation must be applied. The method may return the object reference itself.
Returns: as a rule, this
.
Parameters: self this CORBA object. other the other CORBA object.
Returns: true if the objects are equal.
Parameters: target the CORBA object, to that this operation must be applied.
Returns: the domain managers.
Throws: NO_IMPLEMENT, always (following the 1.4 specification).
Parameters: target the CORBA object, to that this operation must be applied.
Get the InterfaceDef
for this Object.
Parameters: target the CORBA object, to that this operation must be applied. a_policy_type a type of policy to be obtained.
Returns: a corresponding Policy object.
Throws: NO_IMPLEMENT, always (following the 1.4 specification).
Parameters: target the CORBA object, to that this operation must be applied. maximum the maximal value to return.
Returns: the hashcode.
Parameters: target the object, for that the hash code must be computed.
Returns: the hashcode.
Parameters: target the invocation target. output the stream, containing the written arguments.
Returns: the stream, from where the input parameters could be read.
Throws: ApplicationException if the application throws an exception, defined as a part of its remote method definition. RemarshalException if reading(remarshalling) fails. NO_IMPLEMENT, always (following the 1.4 specification).
Parameters: target the CORBA object, to that this operation must be applied. repositoryIdentifer the repository id.
Returns: true if the passed parameter is a repository id of this CORBA object.
Parameters: target the CORBA object, to that this operation must be applied. other the other object reference.
Returns: true if both references refer the same object, false if they probably can refer different objects.
Parameters: self the object to check.
Returns: false, always (following 1.4 specs). Override to get functionality.
Parameters: target the CORBA object, to that this operation must be applied.
Returns: true if the object has been destroyed, false otherwise.
Parameters: target the object reference.
Returns: the associated ORB.
Throws: NO_IMPLEMENT, always (following the 1.4 specification).
Parameters: target the CORBA object, to that this operation must be applied.
Parameters: target the CORBA object, to that this operation must be applied. input the stream, normally returned by {@link #invoke} or {@link ApplicationException#getInputStream()}, can be null. The default method returns without action.
Parameters: target the CORBA object, to that this operation must be applied. operation the name of the method to invoke.
Returns: the request.
Parameters: target the CORBA object, to that this operation must be applied. operation the name of the method to invoke. response_expected specifies if this is one way message or the response to the message is expected.
Returns: the stream where the method arguments should be written.
Parameters: self the object. servant the servant.
Parameters: self the object operation the operation expectedType the expected type of the servant. This implementation always returns null; override for different behavior.
Returns: the servant or null if the servant is not an expected type of the method is not supported, for example, due security reasons.
Parameters: target the CORBA object, to that this operation must be applied. policies the policy additions or replacements. how either {@link SetOverrideType#SET_OVERRIDE} to override the current policies of {@link SetOverrideType#ADD_OVERRIDE} to replace them.
Returns: the new reference with the changed policies.
Throws: NO_IMPLEMENT, always (following the 1.4 specification).
Parameters: self the CORBA object, to that the string representation must be returned. By default, the call is delegated to {@link java.lang.Object#toString()}.
Returns: the string representation.