All Superinterfaces:
BaseObjectType, FileType, org.eclipse.milo.opcua.sdk.core.nodes.Node, org.eclipse.milo.opcua.sdk.core.nodes.ObjectNode
All Known Implementing Classes:
TrustListTypeNode

public interface TrustListType extends FileType
See Also:
  • Field Details

    • 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
    • ACTIVITY_TIMEOUT

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<Double> ACTIVITY_TIMEOUT
    • DEFAULT_VALIDATION_OPTIONS

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

    • 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.
    • getActivityTimeout

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

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

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

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

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

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

      Double readActivityTimeout() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the ActivityTimeout 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.
    • writeActivityTimeout

      void writeActivityTimeout(Double value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the ActivityTimeout 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.
    • readActivityTimeoutAsync

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

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

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

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

      Returns:
      the ActivityTimeout 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.
    • getActivityTimeoutNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.TrustListValidationOptions getDefaultValidationOptions() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the DefaultValidationOptions Node.

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

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

      void setDefaultValidationOptions(org.eclipse.milo.opcua.stack.core.types.structured.TrustListValidationOptions value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the DefaultValidationOptions Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.structured.TrustListValidationOptions readDefaultValidationOptions() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the DefaultValidationOptions Node from the server and update the local value if the operation succeeds.
      Returns:
      the TrustListValidationOptions value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeDefaultValidationOptions

      void writeDefaultValidationOptions(org.eclipse.milo.opcua.stack.core.types.structured.TrustListValidationOptions value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the DefaultValidationOptions Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the TrustListValidationOptions value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readDefaultValidationOptionsAsync

      CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.structured.TrustListValidationOptions> readDefaultValidationOptionsAsync()
      An asynchronous implementation of readDefaultValidationOptions().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeDefaultValidationOptionsAsync

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

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

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

      Returns:
      the DefaultValidationOptions 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.
    • getDefaultValidationOptionsNodeAsync

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