public interface RemoteItemDefinition extends Remote
ItemDef
interface. Used by the
ServerItemDefinition
and
ClientItemDefinition
adapter base classes to provide transparent RMI access to remote item
definitions.
The methods in this interface are documented only with a reference
to a corresponding ItemDef method. The remote object will simply forward
the method call to the underlying ItemDef instance. Argument and return
values, as well as possible exceptions, are copied over the network.
Complex NodeType
return values
are returned as remote references to the
RemoteNodeType
interface. RMI errors are signaled with RemoteExceptions.
ItemDefinition
,
ClientItemDefinition
,
ServerItemDefinition
Modifier and Type | Method and Description |
---|---|
RemoteNodeType |
getDeclaringNodeType()
Remote version of the
ItemDef.getDeclaringNodeType()
method. |
String |
getName()
Remote version of the
ItemDef.getName() method. |
int |
getOnParentVersion()
Remote version of the
ItemDef.getOnParentVersion()
method. |
boolean |
isAutoCreated()
Remote version of the
ItemDef.isAutoCreate()
method. |
boolean |
isMandatory()
Remote version of the
ItemDef.isMandatory()
method. |
boolean |
isProtected()
Remote version of the
ItemDef.isProtected()
method. |
RemoteNodeType getDeclaringNodeType() throws RemoteException
ItemDef.getDeclaringNodeType()
method.RemoteException
- on RMI errorsString getName() throws RemoteException
ItemDef.getName()
method.RemoteException
- on RMI errorsboolean isAutoCreated() throws RemoteException
ItemDef.isAutoCreate()
method.true
if the item is automatically created,
false
otherwiseRemoteException
- on RMI errorsboolean isMandatory() throws RemoteException
ItemDef.isMandatory()
method.true
if the item is mandatory,
false
otherwiseRemoteException
- on RMI errorsint getOnParentVersion() throws RemoteException
ItemDef.getOnParentVersion()
method.RemoteException
- on RMI errorsboolean isProtected() throws RemoteException
ItemDef.isProtected()
method.true
if the item is protected,
false
otherwiseRemoteException
- on RMI errorsCopyright © 2004–2021 The Apache Software Foundation. All rights reserved.