public boolean equals()

in src/main/java/org/apache/fineract/cn/lang/ApplicationName.java [83:91]


  public boolean equals(Object o) {
    if (this == o)
      return true;
    if (!(o instanceof ApplicationName))
      return false;
    ApplicationName that = (ApplicationName) o;
    return Objects.equals(serviceName, that.serviceName) && Objects
        .equals(versionString, that.versionString);
  }