public boolean equals()

in sources/src/main/java/com/google/solutions/jitaccess/auth/JitGroupId.java [117:131]


  public boolean equals(@Nullable Object o) {
    if (this == o) {
      return true;
    }

    if (o == null || getClass() != o.getClass()) {
      return false;
    }

    var that = (JitGroupId)o;
    return
      this.environment.equals(that.environment) &&
      this.system.equals(that.system) &&
      this.name.equals(that.name);
  }