All Implemented Interfaces:
BaseObjectType, PubSubGroupType, WriterGroupType, org.eclipse.milo.opcua.sdk.core.nodes.Node, org.eclipse.milo.opcua.sdk.core.nodes.ObjectNode

public class WriterGroupTypeNode extends PubSubGroupTypeNode implements WriterGroupType
  • Constructor Details

    • WriterGroupTypeNode

      public WriterGroupTypeNode(OpcUaClient client, org.eclipse.milo.opcua.stack.core.types.builtin.NodeId nodeId, org.eclipse.milo.opcua.stack.core.types.enumerated.NodeClass nodeClass, org.eclipse.milo.opcua.stack.core.types.builtin.QualifiedName browseName, org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText displayName, org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText description, org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger writeMask, org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger userWriteMask, org.eclipse.milo.opcua.stack.core.types.structured.RolePermissionType[] rolePermissions, org.eclipse.milo.opcua.stack.core.types.structured.RolePermissionType[] userRolePermissions, org.eclipse.milo.opcua.stack.core.types.structured.AccessRestrictionType accessRestrictions, org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte eventNotifier)
  • Method Details

    • getWriterGroupId

      public org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort getWriterGroupId() throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Get the local value of the WriterGroupId Node.

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

      Specified by:
      getWriterGroupId in interface WriterGroupType
      Returns:
      the local value of the WriterGroupId Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the WriterGroupId Node.
    • setWriterGroupId

      public void setWriterGroupId(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort value) throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Set the local value of the WriterGroupId Node.

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

      Specified by:
      setWriterGroupId in interface WriterGroupType
      Parameters:
      value - the local value to set for the WriterGroupId Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the WriterGroupId Node.
    • readWriterGroupId

      public org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort readWriterGroupId() throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Read the value of the WriterGroupId Node from the server and update the local value if the operation succeeds.
      Specified by:
      readWriterGroupId in interface WriterGroupType
      Returns:
      the UShort value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeWriterGroupId

      public void writeWriterGroupId(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort value) throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Write a new value for the WriterGroupId Node to the server and update the local value if the operation succeeds.
      Specified by:
      writeWriterGroupId in interface WriterGroupType
      Parameters:
      value - the UShort value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readWriterGroupIdAsync

      public CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort> readWriterGroupIdAsync()
      Description copied from interface: WriterGroupType
      An asynchronous implementation of WriterGroupType.readWriterGroupId().
      Specified by:
      readWriterGroupIdAsync in interface WriterGroupType
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeWriterGroupIdAsync

      public CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeWriterGroupIdAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort writerGroupId)
      Description copied from interface: WriterGroupType
      Specified by:
      writeWriterGroupIdAsync in interface WriterGroupType
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getWriterGroupIdNode

      public PropertyTypeNode getWriterGroupIdNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Get the WriterGroupId PropertyType Node, or null if it does not exist.

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

      Specified by:
      getWriterGroupIdNode in interface WriterGroupType
      Returns:
      the WriterGroupId 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.
    • getWriterGroupIdNodeAsync

      public CompletableFuture<? extends PropertyTypeNode> getWriterGroupIdNodeAsync()
      Description copied from interface: WriterGroupType
      Asynchronous implementation of WriterGroupType.getWriterGroupIdNode().
      Specified by:
      getWriterGroupIdNodeAsync in interface WriterGroupType
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getPublishingInterval

      public Double getPublishingInterval() throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Get the local value of the PublishingInterval Node.

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

      Specified by:
      getPublishingInterval in interface WriterGroupType
      Returns:
      the local value of the PublishingInterval Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the PublishingInterval Node.
    • setPublishingInterval

      public void setPublishingInterval(Double value) throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Set the local value of the PublishingInterval Node.

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

      Specified by:
      setPublishingInterval in interface WriterGroupType
      Parameters:
      value - the local value to set for the PublishingInterval Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the PublishingInterval Node.
    • readPublishingInterval

      public Double readPublishingInterval() throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Read the value of the PublishingInterval Node from the server and update the local value if the operation succeeds.
      Specified by:
      readPublishingInterval in interface WriterGroupType
      Returns:
      the Double value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writePublishingInterval

      public void writePublishingInterval(Double value) throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Write a new value for the PublishingInterval Node to the server and update the local value if the operation succeeds.
      Specified by:
      writePublishingInterval in interface WriterGroupType
      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.
    • readPublishingIntervalAsync

      public CompletableFuture<? extends Double> readPublishingIntervalAsync()
      Description copied from interface: WriterGroupType
      An asynchronous implementation of WriterGroupType.readPublishingInterval().
      Specified by:
      readPublishingIntervalAsync in interface WriterGroupType
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writePublishingIntervalAsync

      public CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writePublishingIntervalAsync(Double publishingInterval)
      Description copied from interface: WriterGroupType
      Specified by:
      writePublishingIntervalAsync in interface WriterGroupType
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getPublishingIntervalNode

      public PropertyTypeNode getPublishingIntervalNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Get the PublishingInterval PropertyType Node, or null if it does not exist.

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

      Specified by:
      getPublishingIntervalNode in interface WriterGroupType
      Returns:
      the PublishingInterval 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.
    • getPublishingIntervalNodeAsync

      public CompletableFuture<? extends PropertyTypeNode> getPublishingIntervalNodeAsync()
      Description copied from interface: WriterGroupType
      Asynchronous implementation of WriterGroupType.getPublishingIntervalNode().
      Specified by:
      getPublishingIntervalNodeAsync in interface WriterGroupType
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getKeepAliveTime

      public Double getKeepAliveTime() throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Get the local value of the KeepAliveTime Node.

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

      Specified by:
      getKeepAliveTime in interface WriterGroupType
      Returns:
      the local value of the KeepAliveTime Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the KeepAliveTime Node.
    • setKeepAliveTime

      public void setKeepAliveTime(Double value) throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Set the local value of the KeepAliveTime Node.

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

      Specified by:
      setKeepAliveTime in interface WriterGroupType
      Parameters:
      value - the local value to set for the KeepAliveTime Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the KeepAliveTime Node.
    • readKeepAliveTime

      public Double readKeepAliveTime() throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Read the value of the KeepAliveTime Node from the server and update the local value if the operation succeeds.
      Specified by:
      readKeepAliveTime in interface WriterGroupType
      Returns:
      the Double value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeKeepAliveTime

      public void writeKeepAliveTime(Double value) throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Write a new value for the KeepAliveTime Node to the server and update the local value if the operation succeeds.
      Specified by:
      writeKeepAliveTime in interface WriterGroupType
      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.
    • readKeepAliveTimeAsync

      public CompletableFuture<? extends Double> readKeepAliveTimeAsync()
      Description copied from interface: WriterGroupType
      An asynchronous implementation of WriterGroupType.readKeepAliveTime().
      Specified by:
      readKeepAliveTimeAsync in interface WriterGroupType
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeKeepAliveTimeAsync

      public CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeKeepAliveTimeAsync(Double keepAliveTime)
      Description copied from interface: WriterGroupType
      An asynchronous implementation of WriterGroupType.writeKeepAliveTime(java.lang.Double).
      Specified by:
      writeKeepAliveTimeAsync in interface WriterGroupType
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getKeepAliveTimeNode

      public PropertyTypeNode getKeepAliveTimeNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Get the KeepAliveTime PropertyType Node, or null if it does not exist.

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

      Specified by:
      getKeepAliveTimeNode in interface WriterGroupType
      Returns:
      the KeepAliveTime 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.
    • getKeepAliveTimeNodeAsync

      public CompletableFuture<? extends PropertyTypeNode> getKeepAliveTimeNodeAsync()
      Description copied from interface: WriterGroupType
      Asynchronous implementation of WriterGroupType.getKeepAliveTimeNode().
      Specified by:
      getKeepAliveTimeNodeAsync in interface WriterGroupType
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getPriority

      public org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte getPriority() throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Get the local value of the Priority Node.

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

      Specified by:
      getPriority in interface WriterGroupType
      Returns:
      the local value of the Priority Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Priority Node.
    • setPriority

      public void setPriority(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte value) throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Set the local value of the Priority Node.

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

      Specified by:
      setPriority in interface WriterGroupType
      Parameters:
      value - the local value to set for the Priority Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Priority Node.
    • readPriority

      public org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte readPriority() throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Read the value of the Priority Node from the server and update the local value if the operation succeeds.
      Specified by:
      readPriority in interface WriterGroupType
      Returns:
      the UByte value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writePriority

      public void writePriority(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte value) throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Write a new value for the Priority Node to the server and update the local value if the operation succeeds.
      Specified by:
      writePriority in interface WriterGroupType
      Parameters:
      value - the UByte value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readPriorityAsync

      public CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte> readPriorityAsync()
      Description copied from interface: WriterGroupType
      An asynchronous implementation of WriterGroupType.readPriority().
      Specified by:
      readPriorityAsync in interface WriterGroupType
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writePriorityAsync

      public CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writePriorityAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte priority)
      Description copied from interface: WriterGroupType
      Specified by:
      writePriorityAsync in interface WriterGroupType
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getPriorityNode

      public PropertyTypeNode getPriorityNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Get the Priority PropertyType Node, or null if it does not exist.

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

      Specified by:
      getPriorityNode in interface WriterGroupType
      Returns:
      the Priority 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.
    • getPriorityNodeAsync

      public CompletableFuture<? extends PropertyTypeNode> getPriorityNodeAsync()
      Description copied from interface: WriterGroupType
      Asynchronous implementation of WriterGroupType.getPriorityNode().
      Specified by:
      getPriorityNodeAsync in interface WriterGroupType
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getLocaleIds

      public String[] getLocaleIds() throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Get the local value of the LocaleIds Node.

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

      Specified by:
      getLocaleIds in interface WriterGroupType
      Returns:
      the local value of the LocaleIds Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the LocaleIds Node.
    • setLocaleIds

      public void setLocaleIds(String[] value) throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Set the local value of the LocaleIds Node.

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

      Specified by:
      setLocaleIds in interface WriterGroupType
      Parameters:
      value - the local value to set for the LocaleIds Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the LocaleIds Node.
    • readLocaleIds

      public String[] readLocaleIds() throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Read the value of the LocaleIds Node from the server and update the local value if the operation succeeds.
      Specified by:
      readLocaleIds in interface WriterGroupType
      Returns:
      the String value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeLocaleIds

      public void writeLocaleIds(String[] value) throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Write a new value for the LocaleIds Node to the server and update the local value if the operation succeeds.
      Specified by:
      writeLocaleIds in interface WriterGroupType
      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.
    • readLocaleIdsAsync

      public CompletableFuture<? extends String[]> readLocaleIdsAsync()
      Description copied from interface: WriterGroupType
      An asynchronous implementation of WriterGroupType.readLocaleIds().
      Specified by:
      readLocaleIdsAsync in interface WriterGroupType
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeLocaleIdsAsync

      public CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeLocaleIdsAsync(String[] localeIds)
      Description copied from interface: WriterGroupType
      An asynchronous implementation of WriterGroupType.writeLocaleIds(java.lang.String[]).
      Specified by:
      writeLocaleIdsAsync in interface WriterGroupType
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getLocaleIdsNode

      public PropertyTypeNode getLocaleIdsNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Get the LocaleIds PropertyType Node, or null if it does not exist.

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

      Specified by:
      getLocaleIdsNode in interface WriterGroupType
      Returns:
      the LocaleIds 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.
    • getLocaleIdsNodeAsync

      public CompletableFuture<? extends PropertyTypeNode> getLocaleIdsNodeAsync()
      Description copied from interface: WriterGroupType
      Asynchronous implementation of WriterGroupType.getLocaleIdsNode().
      Specified by:
      getLocaleIdsNodeAsync in interface WriterGroupType
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getHeaderLayoutUri

      public String getHeaderLayoutUri() throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Get the local value of the HeaderLayoutUri Node.

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

      Specified by:
      getHeaderLayoutUri in interface WriterGroupType
      Returns:
      the local value of the HeaderLayoutUri Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the HeaderLayoutUri Node.
    • setHeaderLayoutUri

      public void setHeaderLayoutUri(String value) throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Set the local value of the HeaderLayoutUri Node.

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

      Specified by:
      setHeaderLayoutUri in interface WriterGroupType
      Parameters:
      value - the local value to set for the HeaderLayoutUri Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the HeaderLayoutUri Node.
    • readHeaderLayoutUri

      public String readHeaderLayoutUri() throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Read the value of the HeaderLayoutUri Node from the server and update the local value if the operation succeeds.
      Specified by:
      readHeaderLayoutUri in interface WriterGroupType
      Returns:
      the String value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeHeaderLayoutUri

      public void writeHeaderLayoutUri(String value) throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Write a new value for the HeaderLayoutUri Node to the server and update the local value if the operation succeeds.
      Specified by:
      writeHeaderLayoutUri in interface WriterGroupType
      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.
    • readHeaderLayoutUriAsync

      public CompletableFuture<? extends String> readHeaderLayoutUriAsync()
      Description copied from interface: WriterGroupType
      An asynchronous implementation of WriterGroupType.readHeaderLayoutUri().
      Specified by:
      readHeaderLayoutUriAsync in interface WriterGroupType
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeHeaderLayoutUriAsync

      public CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeHeaderLayoutUriAsync(String headerLayoutUri)
      Description copied from interface: WriterGroupType
      Specified by:
      writeHeaderLayoutUriAsync in interface WriterGroupType
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getHeaderLayoutUriNode

      public PropertyTypeNode getHeaderLayoutUriNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Get the HeaderLayoutUri PropertyType Node, or null if it does not exist.

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

      Specified by:
      getHeaderLayoutUriNode in interface WriterGroupType
      Returns:
      the HeaderLayoutUri 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.
    • getHeaderLayoutUriNodeAsync

      public CompletableFuture<? extends PropertyTypeNode> getHeaderLayoutUriNodeAsync()
      Description copied from interface: WriterGroupType
      Asynchronous implementation of WriterGroupType.getHeaderLayoutUriNode().
      Specified by:
      getHeaderLayoutUriNodeAsync in interface WriterGroupType
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getTransportSettingsNode

      public WriterGroupTransportTypeNode getTransportSettingsNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Get the TransportSettings WriterGroupTransportType Node, or null if it does not exist.

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

      Specified by:
      getTransportSettingsNode in interface WriterGroupType
      Returns:
      the TransportSettings WriterGroupTransportType 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.
    • getTransportSettingsNodeAsync

      public CompletableFuture<? extends WriterGroupTransportTypeNode> getTransportSettingsNodeAsync()
      Description copied from interface: WriterGroupType
      Asynchronous implementation of WriterGroupType.getTransportSettingsNode().
      Specified by:
      getTransportSettingsNodeAsync in interface WriterGroupType
      Returns:
      a CompletableFuture that completes successfully with the WriterGroupTransportType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getMessageSettingsNode

      public WriterGroupMessageTypeNode getMessageSettingsNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Get the MessageSettings WriterGroupMessageType Node, or null if it does not exist.

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

      Specified by:
      getMessageSettingsNode in interface WriterGroupType
      Returns:
      the MessageSettings WriterGroupMessageType 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.
    • getMessageSettingsNodeAsync

      public CompletableFuture<? extends WriterGroupMessageTypeNode> getMessageSettingsNodeAsync()
      Description copied from interface: WriterGroupType
      Asynchronous implementation of WriterGroupType.getMessageSettingsNode().
      Specified by:
      getMessageSettingsNodeAsync in interface WriterGroupType
      Returns:
      a CompletableFuture that completes successfully with the WriterGroupMessageType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getDiagnosticsNode

      public PubSubDiagnosticsWriterGroupTypeNode getDiagnosticsNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Description copied from interface: WriterGroupType
      Get the Diagnostics PubSubDiagnosticsWriterGroupType Node, or null if it does not exist.

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

      Specified by:
      getDiagnosticsNode in interface WriterGroupType
      Returns:
      the Diagnostics PubSubDiagnosticsWriterGroupType 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.
    • getDiagnosticsNodeAsync

      public CompletableFuture<? extends PubSubDiagnosticsWriterGroupTypeNode> getDiagnosticsNodeAsync()
      Description copied from interface: WriterGroupType
      Asynchronous implementation of WriterGroupType.getDiagnosticsNode().
      Specified by:
      getDiagnosticsNodeAsync in interface WriterGroupType
      Returns:
      a CompletableFuture that completes successfully with the PubSubDiagnosticsWriterGroupType Node or completes exceptionally if an error occurs creating or getting the Node.