ObjectImpl (Java SE 10 & JDK 10 )
-
-
Method Detail
-
_get_delegate
public Delegate _get_delegate()
Retrieves the reference to the vendor-specific
Delegateobject to which thisObjectImplobject delegates all methods invoked on it.- Returns:
- the Delegate contained in this ObjectImpl instance
- Throws:
BAD_OPERATION- if the delegate has not been set- See Also:
_set_delegate(org.omg.CORBA.portable.Delegate)
-
_set_delegate
public void _set_delegate(Delegate delegate)
Sets the Delegate for this
ObjectImplinstance to the givenDelegateobject. All method invocations on thisObjectImplobject will be forwarded to this delegate.- Parameters:
delegate- theDelegateinstance to which all method calls on thisObjectImplobject will be delegated; may be implemented by a third-party ORB- See Also:
_get_delegate()
-
_ids
public abstract String[] _ids()
Retrieves a string array containing the repository identifiers supported by this
ObjectImplobject. For example, for a stub, this method returns information about all the interfaces supported by the stub.- Returns:
- the array of all repository identifiers supported by this
ObjectImplinstance
-
_duplicate
public Object _duplicate()
Returns a duplicate of this
ObjectImplobject.- Specified by:
_duplicatein interfaceObject- Returns:
- an
orb.omg.CORBA.Objectobject that is a duplicate of this object
-
_release
public void _release()
Releases the resources associated with this
ObjectImplobject.
-
_is_a
public boolean _is_a(String repository_id)
Checks whether the object identified by the given repository identifier is an
ObjectImplobject.
-
_is_equivalent
public boolean _is_equivalent(Object that)
Checks whether the the given
ObjectImplobject is equivalent to thisObjectImplobject.- Specified by:
_is_equivalentin interfaceObject- Parameters:
that- an instance ofObjectImplto compare with thisObjectImplobject- Returns:
trueif the given object is equivalent to thisObjectImplobject;falseotherwise
-
_non_existent
public boolean _non_existent()
Checks whether the server object for this
ObjectImplobject has been destroyed.- Specified by:
_non_existentin interfaceObject- Returns:
trueif the ORB knows authoritatively that the server object does not exist;falseotherwise
-
_hash
public int _hash(int maximum)
Retrieves the hash code that serves as an ORB-internal identifier for this
ObjectImplobject.
-
_request
public Request _request(String operation)
Creates a
Requestobject containing the given method that can be used with the Dynamic Invocation Interface.
-
_create_request
public Request _create_request(Context ctx, String operation, NVList arg_list, NamedValue result)
Creates a
Requestobject that contains the given context, method, argument list, and container for the result.- Specified by:
_create_requestin interfaceObject- Parameters:
ctx- the Context for the requestoperation- the method that the newRequestobject will invokearg_list- the arguments for the method; anNVListin which each argument is aNamedValueobjectresult- aNamedValueobject to be used for returning the result of executing the request's method- Returns:
- a new
Requestobject initialized with the given context, method, argument list, and container for the return value - See Also:
Request,NVList,NamedValue
-
_create_request
public Request _create_request(Context ctx, String operation, NVList arg_list, NamedValue result, ExceptionList exceptions, ContextList contexts)
Creates a
Requestobject that contains the given context, method, argument list, container for the result, exceptions, and list of property names to be used in resolving the context strings. ThisRequestobject is for use in the Dynamic Invocation Interface.- Specified by:
_create_requestin interfaceObject- Parameters:
ctx- theContextobject that contains the context strings that must be resolved before they are sent along with the requestoperation- the method that the newRequestobject will invokearg_list- the arguments for the method; anNVListin which each argument is aNamedValueobjectresult- aNamedValueobject to be used for returning the result of executing the request's methodexceptions- a list of the exceptions that the given method throwscontexts- a list of the properties that are needed to resolve the contexts in ctx; the strings in contexts are used as arguments to the methodContext.get_values, which returns the value associated with the given property- Returns:
- a new
Requestobject initialized with the given context strings to resolve, method, argument list, container for the result, exceptions, and list of property names to be used in resolving the context strings - See Also:
Request,NVList,NamedValue,ExceptionList,ContextList
-
_get_interface_def
public Object _get_interface_def()
Retrieves the interface definition for this
ObjectImplobject.- Specified by:
_get_interface_defin interfaceObject- Returns:
- the
org.omg.CORBA.Objectinstance that is the interface definition for thisObjectImplobject
-
_orb
public ORB _orb()
Returns a reference to the ORB associated with this object and its delegate. This is the
ORBobject that created the delegate.- Returns:
- the
ORBinstance that created theDelegateobject contained in thisObjectImplobject
-
_get_policy
public Policy _get_policy(int policy_type)
Retrieves the
Policyobject for thisObjectImplobject that has the given policy type.- Specified by:
_get_policyin interfaceObject- Parameters:
policy_type- an int indicating the policy type- Returns:
- the
Policyobject that is the specified policy type and that applies to thisObjectImplobject - See Also:
PolicyOperations.policy_type()
-
_get_domain_managers
public DomainManager[] _get_domain_managers()
Retrieves a list of the domain managers for this
ObjectImplobject.- Specified by:
_get_domain_managersin interfaceObject- Returns:
- an array containing the
DomainManagerobjects for this instance ofObjectImpl
-
_set_policy_override
public Object _set_policy_override(Policy[] policies, SetOverrideType set_add)
Sets this
ObjectImplobject's override type for the given policies to the given instance ofSetOverrideType.- Specified by:
_set_policy_overridein interfaceObject- Parameters:
policies- an array ofPolicyobjects with the policies that will replace the current policies or be added to the current policiesset_add- eitherSetOverrideType.SET_OVERRIDE, indicating that the given policies will replace any existing ones, orSetOverrideType.ADD_OVERRIDE, indicating that the given policies should be added to any existing ones- Returns:
- an
Objectwith the given policies replacing or added to its previous policies
-
_is_local
public boolean _is_local()
Checks whether this
ObjectImplobject is implemented by a local servant. If so, local invocation API's may be used.- Returns:
trueif this object is implemented by a local servant;falseotherwise
-
_servant_preinvoke
public ServantObject _servant_preinvoke(String operation, Class expectedType)
Returns a Java reference to the local servant that should be used for sending a request for the method specified. If this
ObjectImplobject is a local stub, it will invoke the_servant_preinvokemethod before sending a request in order to obtain theServantObjectinstance to use.If a
ServantObjectobject is returned, itsservantfield has been set to an object of the expected type (Note: the object may or may not be the actual servant instance). The local stub may cast the servant field to the expected type, and then invoke the operation directly. TheServantRequestobject is valid for only one invocation and cannot be used for more than one invocation.- Parameters:
operation- aStringcontaining the name of the method to be invoked. This name should correspond to the method name as it would be encoded in a GIOP request.expectedType- aClassobject representing the expected type of the servant that is returned. This expected type is theClassobject associated with the operations class for the stub's interface. For example, a stub for an interfaceFoowould pass theClassobject for theFooOperationsinterface.- Returns:
- (1) a
ServantObjectobject, which may or may not be the actual servant instance, or (2)nullif (a) the servant is not local or (b) the servant has ceased to be local due to a ForwardRequest from a POA ServantManager - Throws:
BAD_PARAM- if the servant is not the expected type
-
_servant_postinvoke
public void _servant_postinvoke(ServantObject servant)
Is called by the local stub after it has invoked an operation on the local servant that was previously retrieved from a call to the method
_servant_preinvoke. The_servant_postinvokemethod must be called if the_servant_preinvokemethod returned a non-null value, even if an exception was thrown by the method invoked by the servant. For this reason, the call to the method_servant_postinvokeshould be placed in a Javafinallyclause.- Parameters:
servant- the instance of theServantObjectreturned by the_servant_preinvokemethod
-
_request
public OutputStream _request(String operation, boolean responseExpected)
Returns an
OutputStreamobject to use for marshalling the arguments of the given method. This method is called by a stub, which must indicate if a response is expected, that is, whether or not the call is oneway.- Parameters:
operation- a String giving the name of the method.responseExpected- a boolean --trueif the request is not one way, that is, a response is expected- Returns:
- an
OutputStreamobject for dispatching the request
-
_invoke
public InputStream _invoke(OutputStream output) throws ApplicationException, RemarshalException
Invokes an operation and returns an
InputStreamobject for reading the response. The stub provides theOutputStreamobject that was previously returned by a call to the_requestmethod. The method specified as an argument to_requestwhen it was called previously is the method that this method invokes.If an exception occurs, the
_invokemethod may throw anApplicationExceptionobject that contains an InputStream from which the user exception state may be unmarshalled.- Parameters:
output- an OutputStream object for dispatching the request- Returns:
- an
InputStreamobject containing the marshalled response to the method invoked - Throws:
ApplicationException- if the invocation meets application-defined exceptionRemarshalException- if the invocation leads to a remarshalling error- See Also:
_request(java.lang.String)
-
_releaseReply
public void _releaseReply(InputStream input)
Releases the given reply stream back to the ORB when unmarshalling has completed after a call to the method
_invoke. Calling this method is optional for the stub.- Parameters:
input- theInputStreamobject that was returned by the_invokemethod or theApplicationException.getInputStreammethod; may benull, in which case this method does nothing- See Also:
_invoke(org.omg.CORBA.portable.OutputStream)
-
toString
public String toString()
Returns a
Stringobject that represents thisObjectImplobject.
-
hashCode
public int hashCode()
Returns the hash code for this
ObjectImplobject.- Overrides:
hashCodein classObject- Returns:
- the hash code for this object
- See Also:
Object.equals(java.lang.Object),System.identityHashCode(java.lang.Object)
-
equals
public boolean equals(Object obj)
Compares this
ObjectImplobject with the given one for equality.- Overrides:
equalsin classObject- Parameters:
obj- the object with which to compare this object- Returns:
trueif the two objects are equal;falseotherwise- See Also:
Object.hashCode(),HashMap
-
-