Interface AuditCreateSessionEventType

All Superinterfaces:
AuditEventType, AuditSecurityEventType, AuditSessionEventType, BaseEventType, BaseObjectType, org.eclipse.milo.opcua.sdk.core.nodes.Node, org.eclipse.milo.opcua.sdk.core.nodes.ObjectNode
All Known Subinterfaces:
AuditUrlMismatchEventType
All Known Implementing Classes:
AuditCreateSessionEventTypeNode, AuditUrlMismatchEventTypeNode

public interface AuditCreateSessionEventType extends AuditSessionEventType
See Also:
  • Field Details

    • SECURE_CHANNEL_ID

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<String> SECURE_CHANNEL_ID
    • CLIENT_CERTIFICATE

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.ByteString> CLIENT_CERTIFICATE
    • CLIENT_CERTIFICATE_THUMBPRINT

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<String> CLIENT_CERTIFICATE_THUMBPRINT
    • REVISED_SESSION_TIMEOUT

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

    • getSecureChannelId

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

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

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

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

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

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

      String readSecureChannelId() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the SecureChannelId 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.
    • writeSecureChannelId

      void writeSecureChannelId(String value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the SecureChannelId 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.
    • readSecureChannelIdAsync

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

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

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

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

      Returns:
      the SecureChannelId 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.
    • getSecureChannelIdNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.builtin.ByteString getClientCertificate() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the ClientCertificate Node.

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

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

      void setClientCertificate(org.eclipse.milo.opcua.stack.core.types.builtin.ByteString value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the ClientCertificate Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.ByteString readClientCertificate() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the ClientCertificate 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.
    • writeClientCertificate

      void writeClientCertificate(org.eclipse.milo.opcua.stack.core.types.builtin.ByteString value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the ClientCertificate 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.
    • readClientCertificateAsync

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

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

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

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

      Returns:
      the ClientCertificate 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.
    • getClientCertificateNodeAsync

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

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

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

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

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

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

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

      String readClientCertificateThumbprint() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the ClientCertificateThumbprint 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.
    • writeClientCertificateThumbprint

      void writeClientCertificateThumbprint(String value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the ClientCertificateThumbprint 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.
    • readClientCertificateThumbprintAsync

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

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

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

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

      Returns:
      the ClientCertificateThumbprint 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.
    • getClientCertificateThumbprintNodeAsync

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

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

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

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

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

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

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

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

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

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

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

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

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

      Returns:
      the RevisedSessionTimeout 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.
    • getRevisedSessionTimeoutNodeAsync

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