Interface AuditClientUpdateMethodResultEventType

All Superinterfaces:
AuditClientEventType, AuditEventType, BaseEventType, BaseObjectType, org.eclipse.milo.opcua.sdk.core.nodes.Node, org.eclipse.milo.opcua.sdk.core.nodes.ObjectNode
All Known Implementing Classes:
AuditClientUpdateMethodResultEventTypeNode

public interface AuditClientUpdateMethodResultEventType extends AuditClientEventType
See Also:
  • Field Details

    • OBJECT_ID

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.ExpandedNodeId> OBJECT_ID
    • METHOD_ID

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.ExpandedNodeId> METHOD_ID
    • STATUS_CODE_ID

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> STATUS_CODE_ID
    • INPUT_ARGUMENTS

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<Object[]> INPUT_ARGUMENTS
    • OUTPUT_ARGUMENTS

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<Object[]> OUTPUT_ARGUMENTS
  • Method Details

    • getObjectId

      org.eclipse.milo.opcua.stack.core.types.builtin.ExpandedNodeId getObjectId() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the ObjectId Node.

      The returned value is the last seen; it is not read live from the server.

      Returns:
      the local value of the ObjectId Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the ObjectId Node.
    • setObjectId

      void setObjectId(org.eclipse.milo.opcua.stack.core.types.builtin.ExpandedNodeId value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the ObjectId Node.

      The value is only updated locally; it is not written to the server.

      Parameters:
      value - the local value to set for the ObjectId Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the ObjectId Node.
    • readObjectId

      org.eclipse.milo.opcua.stack.core.types.builtin.ExpandedNodeId readObjectId() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the ObjectId Node from the server and update the local value if the operation succeeds.
      Returns:
      the ExpandedNodeId value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeObjectId

      void writeObjectId(org.eclipse.milo.opcua.stack.core.types.builtin.ExpandedNodeId value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the ObjectId Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the ExpandedNodeId value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readObjectIdAsync

      CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.ExpandedNodeId> readObjectIdAsync()
      An asynchronous implementation of readObjectId().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeObjectIdAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeObjectIdAsync(org.eclipse.milo.opcua.stack.core.types.builtin.ExpandedNodeId value)
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getObjectIdNode

      PropertyType getObjectIdNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the ObjectId PropertyType Node, or null if it does not exist.

      The Node is created when first accessed and cached for subsequent calls.

      Returns:
      the ObjectId PropertyType Node, or null if it does not exist.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.
    • getObjectIdNodeAsync

      CompletableFuture<? extends PropertyType> getObjectIdNodeAsync()
      Asynchronous implementation of getObjectIdNode().
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getMethodId

      org.eclipse.milo.opcua.stack.core.types.builtin.ExpandedNodeId getMethodId() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the MethodId Node.

      The returned value is the last seen; it is not read live from the server.

      Returns:
      the local value of the MethodId Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MethodId Node.
    • setMethodId

      void setMethodId(org.eclipse.milo.opcua.stack.core.types.builtin.ExpandedNodeId value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the MethodId Node.

      The value is only updated locally; it is not written to the server.

      Parameters:
      value - the local value to set for the MethodId Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MethodId Node.
    • readMethodId

      org.eclipse.milo.opcua.stack.core.types.builtin.ExpandedNodeId readMethodId() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the MethodId Node from the server and update the local value if the operation succeeds.
      Returns:
      the ExpandedNodeId value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeMethodId

      void writeMethodId(org.eclipse.milo.opcua.stack.core.types.builtin.ExpandedNodeId value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the MethodId Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the ExpandedNodeId value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readMethodIdAsync

      CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.ExpandedNodeId> readMethodIdAsync()
      An asynchronous implementation of readMethodId().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeMethodIdAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeMethodIdAsync(org.eclipse.milo.opcua.stack.core.types.builtin.ExpandedNodeId value)
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getMethodIdNode

      PropertyType getMethodIdNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the MethodId PropertyType Node, or null if it does not exist.

      The Node is created when first accessed and cached for subsequent calls.

      Returns:
      the MethodId PropertyType Node, or null if it does not exist.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.
    • getMethodIdNodeAsync

      CompletableFuture<? extends PropertyType> getMethodIdNodeAsync()
      Asynchronous implementation of getMethodIdNode().
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getStatusCodeId

      org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode getStatusCodeId() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the StatusCodeId Node.

      The returned value is the last seen; it is not read live from the server.

      Returns:
      the local value of the StatusCodeId Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the StatusCodeId Node.
    • setStatusCodeId

      void setStatusCodeId(org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the StatusCodeId Node.

      The value is only updated locally; it is not written to the server.

      Parameters:
      value - the local value to set for the StatusCodeId Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the StatusCodeId Node.
    • readStatusCodeId

      org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode readStatusCodeId() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the StatusCodeId Node from the server and update the local value if the operation succeeds.
      Returns:
      the StatusCode value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeStatusCodeId

      void writeStatusCodeId(org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the StatusCodeId Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the StatusCode value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readStatusCodeIdAsync

      CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> readStatusCodeIdAsync()
      An asynchronous implementation of readStatusCodeId().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeStatusCodeIdAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeStatusCodeIdAsync(org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode value)
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getStatusCodeIdNode

      PropertyType getStatusCodeIdNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the StatusCodeId PropertyType Node, or null if it does not exist.

      The Node is created when first accessed and cached for subsequent calls.

      Returns:
      the StatusCodeId PropertyType Node, or null if it does not exist.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.
    • getStatusCodeIdNodeAsync

      CompletableFuture<? extends PropertyType> getStatusCodeIdNodeAsync()
      Asynchronous implementation of getStatusCodeIdNode().
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getInputArguments

      Object[] getInputArguments() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the InputArguments Node.

      The returned value is the last seen; it is not read live from the server.

      Returns:
      the local value of the InputArguments Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the InputArguments Node.
    • setInputArguments

      void setInputArguments(Object[] value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the InputArguments Node.

      The value is only updated locally; it is not written to the server.

      Parameters:
      value - the local value to set for the InputArguments Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the InputArguments Node.
    • readInputArguments

      Object[] readInputArguments() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the InputArguments Node from the server and update the local value if the operation succeeds.
      Returns:
      the Object value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeInputArguments

      void writeInputArguments(Object[] value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the InputArguments Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the Object value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readInputArgumentsAsync

      CompletableFuture<? extends Object[]> readInputArgumentsAsync()
      An asynchronous implementation of readInputArguments().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeInputArgumentsAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeInputArgumentsAsync(Object[] value)
      An asynchronous implementation of writeInputArguments(java.lang.Object[]).
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getInputArgumentsNode

      PropertyType getInputArgumentsNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the InputArguments PropertyType Node, or null if it does not exist.

      The Node is created when first accessed and cached for subsequent calls.

      Returns:
      the InputArguments PropertyType Node, or null if it does not exist.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.
    • getInputArgumentsNodeAsync

      CompletableFuture<? extends PropertyType> getInputArgumentsNodeAsync()
      Asynchronous implementation of getInputArgumentsNode().
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getOutputArguments

      Object[] getOutputArguments() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the OutputArguments Node.

      The returned value is the last seen; it is not read live from the server.

      Returns:
      the local value of the OutputArguments Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the OutputArguments Node.
    • setOutputArguments

      void setOutputArguments(Object[] value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the OutputArguments Node.

      The value is only updated locally; it is not written to the server.

      Parameters:
      value - the local value to set for the OutputArguments Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the OutputArguments Node.
    • readOutputArguments

      Object[] readOutputArguments() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the OutputArguments Node from the server and update the local value if the operation succeeds.
      Returns:
      the Object value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeOutputArguments

      void writeOutputArguments(Object[] value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the OutputArguments Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the Object value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readOutputArgumentsAsync

      CompletableFuture<? extends Object[]> readOutputArgumentsAsync()
      An asynchronous implementation of readOutputArguments().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeOutputArgumentsAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeOutputArgumentsAsync(Object[] value)
      An asynchronous implementation of writeOutputArguments(java.lang.Object[]).
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getOutputArgumentsNode

      PropertyType getOutputArgumentsNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the OutputArguments PropertyType Node, or null if it does not exist.

      The Node is created when first accessed and cached for subsequent calls.

      Returns:
      the OutputArguments PropertyType Node, or null if it does not exist.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.
    • getOutputArgumentsNodeAsync

      CompletableFuture<? extends PropertyType> getOutputArgumentsNodeAsync()
      Asynchronous implementation of getOutputArgumentsNode().
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.