Interface AuthorizationServiceConfigurationType

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

public interface AuthorizationServiceConfigurationType extends BaseObjectType
See Also:
  • Field Details

    • SERVICE_URI

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<String> SERVICE_URI
    • SERVICE_CERTIFICATE

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

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

    • getServiceUri

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

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

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

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

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

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

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

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

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

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

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

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

      Returns:
      the ServiceUri 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.
    • getServiceUriNodeAsync

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

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

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

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

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

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

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

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

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

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

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

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

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

      Returns:
      the ServiceCertificate 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.
    • getServiceCertificateNodeAsync

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

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

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

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

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

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

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

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

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

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

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

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

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

      Returns:
      the IssuerEndpointUrl 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.
    • getIssuerEndpointUrlNodeAsync

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