Interface AuditCertificateDataMismatchEventType

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

public interface AuditCertificateDataMismatchEventType extends AuditCertificateEventType
See Also:
  • Field Details

    • INVALID_HOSTNAME

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<String> INVALID_HOSTNAME
    • INVALID_URI

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<String> INVALID_URI
  • Method Details

    • getInvalidHostname

      String getInvalidHostname() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the InvalidHostname Node.

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

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

      void setInvalidHostname(String value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the InvalidHostname Node.

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

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

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

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

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

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

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

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

      Returns:
      the InvalidHostname 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.
    • getInvalidHostnameNodeAsync

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

      String getInvalidUri() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the InvalidUri Node.

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

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

      void setInvalidUri(String value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the InvalidUri Node.

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

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

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

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

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

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

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

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

      Returns:
      the InvalidUri 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.
    • getInvalidUriNodeAsync

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