Class NodeMgrAddException

All Implemented Interfaces:
com.nt.common.exceptions.SMGException, Serializable

public class NodeMgrAddException extends OSAException
See Also:
  • Constructor Details

    • NodeMgrAddException

      public NodeMgrAddException()
      Default constructor. The NM Name and ID are initialized to empty String objects.
    • NodeMgrAddException

      public NodeMgrAddException(String message)
      Exception which contains the given message. The NM Name and ID are initialized to empty String objects.
    • NodeMgrAddException

      public NodeMgrAddException(String message, String name, String id)
      Exception which contains the given message, and sets the NM name to the given name.
      Parameters:
      message - Message that this Exception will contain.
      name - User entered name of the Node Manager to which this Exception refers.
      id - System Identifier for the NM to which this Exception refers. Currently, this is the IP Address and Port Number, separated by a colon (127.0.0.1:10990).
  • Method Details

    • getNMName

      public String getNMName()
      Returns the name of the Node Manager to which this Exception refers.
    • setNMName

      public void setNMName(String name)
      Sets the name of the Node Manager to which this Exception refers.
    • getNMId

      public String getNMId()
      Returns the System identifier for the Node Manager to which this Exception refers.
      Returns:
      System Identifier for the NM to which this Exception refers. Currently, this is the IP Address and Port Number, separated by a colon (127.0.0.1:10990).
    • setNMId

      public void setNMId(String id)
      Sets the System identifier for the Node Manager to which this Exception refers.
      Parameters:
      id - System Identifier for the NM to which this Exception refers. Currently, this is the IP Address and Port Number, separated by a colon (127.0.0.1:10990).