Interface AuditHistoryAtTimeDeleteEventType

All Superinterfaces:
AuditEventType, AuditHistoryDeleteEventType, AuditHistoryUpdateEventType, AuditUpdateEventType, BaseEventType, BaseObjectType, org.eclipse.milo.opcua.sdk.core.nodes.Node, org.eclipse.milo.opcua.sdk.core.nodes.ObjectNode
All Known Implementing Classes:
AuditHistoryAtTimeDeleteEventTypeNode

public interface AuditHistoryAtTimeDeleteEventType extends AuditHistoryDeleteEventType
See Also:
  • Field Details

    • REQ_TIMES

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.DateTime[]> REQ_TIMES
    • OLD_VALUES

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.DataValue[]> OLD_VALUES
  • Method Details

    • getReqTimes

      org.eclipse.milo.opcua.stack.core.types.builtin.DateTime[] getReqTimes() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the ReqTimes Node.

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

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

      void setReqTimes(org.eclipse.milo.opcua.stack.core.types.builtin.DateTime[] value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the ReqTimes Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.DateTime[] readReqTimes() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the ReqTimes Node from the server and update the local value if the operation succeeds.
      Returns:
      the DateTime value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeReqTimes

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

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

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

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

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

      Returns:
      the ReqTimes 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.
    • getReqTimesNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.builtin.DataValue[] getOldValues() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the OldValues Node.

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

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

      void setOldValues(org.eclipse.milo.opcua.stack.core.types.builtin.DataValue[] value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the OldValues Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.DataValue[] readOldValues() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the OldValues Node from the server and update the local value if the operation succeeds.
      Returns:
      the DataValue value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeOldValues

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

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

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

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

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

      Returns:
      the OldValues 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.
    • getOldValuesNodeAsync

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