@Override
  public boolean equals(Object obj) {
    if (this == obj) return true;
    if (obj == null) return false;

    if (obj instanceof SqlInjectionMatchSetUpdate == false) return false;
    SqlInjectionMatchSetUpdate other = (SqlInjectionMatchSetUpdate) obj;
    if (other.getAction() == null ^ this.getAction() == null) return false;
    if (other.getAction() != null && other.getAction().equals(this.getAction()) == false)
      return false;
    if (other.getSqlInjectionMatchTuple() == null ^ this.getSqlInjectionMatchTuple() == null)
      return false;
    if (other.getSqlInjectionMatchTuple() != null
        && other.getSqlInjectionMatchTuple().equals(this.getSqlInjectionMatchTuple()) == false)
      return false;
    return true;
  }