Interface IIeeeTsnInterfaceConfigurationType

All Superinterfaces:
BaseInterfaceType, BaseObjectType, org.eclipse.milo.opcua.sdk.core.nodes.Node, org.eclipse.milo.opcua.sdk.core.nodes.ObjectNode
All Known Subinterfaces:
IIeeeTsnInterfaceConfigurationListenerType, IIeeeTsnInterfaceConfigurationTalkerType
All Known Implementing Classes:
IIeeeTsnInterfaceConfigurationListenerTypeNode, IIeeeTsnInterfaceConfigurationTalkerTypeNode, IIeeeTsnInterfaceConfigurationTypeNode

public interface IIeeeTsnInterfaceConfigurationType extends BaseInterfaceType
See Also:
  • Method Details

    • getMacAddress

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

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

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

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

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

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

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

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

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

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

      BaseDataVariableType getMacAddressNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the MacAddress BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the MacAddress BaseDataVariableType 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.
    • getMacAddressNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getMacAddressNodeAsync()
      Asynchronous implementation of getMacAddressNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getInterfaceName

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

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

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

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

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

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

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

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

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

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

      BaseDataVariableType getInterfaceNameNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the InterfaceName BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the InterfaceName BaseDataVariableType 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.
    • getInterfaceNameNodeAsync

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