Interface TrustListOutOfDateAlarmType

All Superinterfaces:
AcknowledgeableConditionType, AlarmConditionType, BaseEventType, BaseObjectType, ConditionType, DiscreteAlarmType, org.eclipse.milo.opcua.sdk.core.nodes.Node, org.eclipse.milo.opcua.sdk.core.nodes.ObjectNode, OffNormalAlarmType, SystemOffNormalAlarmType
All Known Implementing Classes:
TrustListOutOfDateAlarmTypeNode

public interface TrustListOutOfDateAlarmType extends SystemOffNormalAlarmType
See Also:
  • Field Details

    • TRUST_LIST_ID

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.NodeId> TRUST_LIST_ID
    • LAST_UPDATE_TIME

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.DateTime> LAST_UPDATE_TIME
    • UPDATE_FREQUENCY

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<Double> UPDATE_FREQUENCY
  • Method Details

    • getTrustListId

      org.eclipse.milo.opcua.stack.core.types.builtin.NodeId getTrustListId() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the TrustListId Node.

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

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

      void setTrustListId(org.eclipse.milo.opcua.stack.core.types.builtin.NodeId value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the TrustListId Node.

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

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

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

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

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

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

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

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

      Returns:
      the TrustListId 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.
    • getTrustListIdNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.builtin.DateTime getLastUpdateTime() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the LastUpdateTime Node.

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

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

      void setLastUpdateTime(org.eclipse.milo.opcua.stack.core.types.builtin.DateTime value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the LastUpdateTime Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.DateTime readLastUpdateTime() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the LastUpdateTime 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.
    • writeLastUpdateTime

      void writeLastUpdateTime(org.eclipse.milo.opcua.stack.core.types.builtin.DateTime value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the LastUpdateTime 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.
    • readLastUpdateTimeAsync

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

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeLastUpdateTimeAsync(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.
    • getLastUpdateTimeNode

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

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

      Returns:
      the LastUpdateTime 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.
    • getLastUpdateTimeNodeAsync

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

      Double getUpdateFrequency() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the UpdateFrequency Node.

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

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

      void setUpdateFrequency(Double value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the UpdateFrequency Node.

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

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

      Double readUpdateFrequency() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the UpdateFrequency Node from the server and update the local value if the operation succeeds.
      Returns:
      the Double value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeUpdateFrequency

      void writeUpdateFrequency(Double value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the UpdateFrequency Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the Double value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readUpdateFrequencyAsync

      CompletableFuture<? extends Double> readUpdateFrequencyAsync()
      An asynchronous implementation of readUpdateFrequency().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeUpdateFrequencyAsync

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

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

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

      Returns:
      the UpdateFrequency 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.
    • getUpdateFrequencyNodeAsync

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