public boolean equals()

in sources/src/main/java/com/google/solutions/jitaccess/auth/ServiceAccountId.java [97:108]


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

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

    ServiceAccountId other = (ServiceAccountId) o;
    return this.id.equals(other.id) && this.projectId.equals(other.projectId);
  }