Interface AuditHistoryEventDeleteEventType

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:
AuditHistoryEventDeleteEventTypeNode

public interface AuditHistoryEventDeleteEventType extends AuditHistoryDeleteEventType
See Also:
  • Field Details

    • EVENT_IDS

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

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.structured.HistoryEventFieldList> OLD_VALUES
  • Method Details

    • getEventIds

      org.eclipse.milo.opcua.stack.core.types.builtin.ByteString[] getEventIds() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the EventIds Node.

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

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

      void setEventIds(org.eclipse.milo.opcua.stack.core.types.builtin.ByteString[] value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the EventIds Node.

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

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

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

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

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

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

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

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

      Returns:
      the EventIds 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.
    • getEventIdsNodeAsync

      CompletableFuture<? extends PropertyType> getEventIdsNodeAsync()
      Asynchronous implementation of getEventIdsNode().
      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.structured.HistoryEventFieldList 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.structured.HistoryEventFieldList 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.structured.HistoryEventFieldList 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 HistoryEventFieldList 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.structured.HistoryEventFieldList 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 HistoryEventFieldList 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.structured.HistoryEventFieldList> 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.structured.HistoryEventFieldList 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.