Interface IetfBaseNetworkInterfaceType

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

public interface IetfBaseNetworkInterfaceType extends BaseObjectType
See Also:
  • Method Details

    • getAdminStatus

      org.eclipse.milo.opcua.stack.core.types.enumerated.InterfaceAdminStatus getAdminStatus() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the AdminStatus Node.

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

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

      void setAdminStatus(org.eclipse.milo.opcua.stack.core.types.enumerated.InterfaceAdminStatus value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the AdminStatus Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.enumerated.InterfaceAdminStatus readAdminStatus() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the AdminStatus Node from the server and update the local value if the operation succeeds.
      Returns:
      the InterfaceAdminStatus value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeAdminStatus

      void writeAdminStatus(org.eclipse.milo.opcua.stack.core.types.enumerated.InterfaceAdminStatus value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the AdminStatus Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the InterfaceAdminStatus value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readAdminStatusAsync

      CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.enumerated.InterfaceAdminStatus> readAdminStatusAsync()
      An asynchronous implementation of readAdminStatus().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeAdminStatusAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeAdminStatusAsync(org.eclipse.milo.opcua.stack.core.types.enumerated.InterfaceAdminStatus value)
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getAdminStatusNode

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

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

      Returns:
      the AdminStatus 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.
    • getAdminStatusNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.enumerated.InterfaceOperStatus getOperStatus() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the OperStatus Node.

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

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

      void setOperStatus(org.eclipse.milo.opcua.stack.core.types.enumerated.InterfaceOperStatus value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the OperStatus Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.enumerated.InterfaceOperStatus readOperStatus() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the OperStatus Node from the server and update the local value if the operation succeeds.
      Returns:
      the InterfaceOperStatus value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeOperStatus

      void writeOperStatus(org.eclipse.milo.opcua.stack.core.types.enumerated.InterfaceOperStatus value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the OperStatus Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the InterfaceOperStatus value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readOperStatusAsync

      CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.enumerated.InterfaceOperStatus> readOperStatusAsync()
      An asynchronous implementation of readOperStatus().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeOperStatusAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeOperStatusAsync(org.eclipse.milo.opcua.stack.core.types.enumerated.InterfaceOperStatus value)
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getOperStatusNode

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

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

      Returns:
      the OperStatus 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.
    • getOperStatusNodeAsync

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

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

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

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

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

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

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

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

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

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

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

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

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

      Returns:
      the PhysAddress 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.
    • getPhysAddressNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong getSpeed() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the Speed Node.

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

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

      void setSpeed(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the Speed Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong readSpeed() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the Speed Node from the server and update the local value if the operation succeeds.
      Returns:
      the ULong value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeSpeed

      void writeSpeed(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the Speed Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the ULong value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readSpeedAsync

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

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeSpeedAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong value)
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getSpeedNode

      AnalogUnitType getSpeedNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the Speed AnalogUnitType Node, or null if it does not exist.

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

      Returns:
      the Speed AnalogUnitType 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.
    • getSpeedNodeAsync

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