java.lang.Object
com.aquima.interactions.foundation.connectivity.QualifiedName
All Implemented Interfaces:
Serializable

public class QualifiedName extends Object implements Serializable
This class defines a qualified name reference.
Since:
9.0
Author:
a.pragt
See Also:
  • Constructor Details

    • QualifiedName

      public QualifiedName(String localName)
      Construct a qualified name with a local name and without a namespace
      Parameters:
      localName - The local name, may not be null.
    • QualifiedName

      public QualifiedName(String namespace, String localName)
      Construct a qualified name with a namespace and local name.
      Parameters:
      namespace - The namespace, may be null.
      localName - The local name, may not be null.
  • Method Details

    • getNamespace

      public String getNamespace()
      This method returns the namespace of the qualified name.
      Returns:
      The namespace, may be null.
    • getLocalName

      public String getLocalName()
      This method returns the local name of the qualified name.
      Returns:
      The local name, never null.
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • fromFullName

      public static QualifiedName fromFullName(String fullName, NamespaceMap namespaces)