@Override
  public int compareTo(ResourceBlockPermission resourceBlockPermission) {
    long primaryKey = resourceBlockPermission.getPrimaryKey();

    if (getPrimaryKey() < primaryKey) {
      return -1;
    } else if (getPrimaryKey() > primaryKey) {
      return 1;
    } else {
      return 0;
    }
  }
  @Override
  public boolean equals(Object obj) {
    if (this == obj) {
      return true;
    }

    if (!(obj instanceof ResourceBlockPermission)) {
      return false;
    }

    ResourceBlockPermission resourceBlockPermission = (ResourceBlockPermission) obj;

    long primaryKey = resourceBlockPermission.getPrimaryKey();

    if (getPrimaryKey() == primaryKey) {
      return true;
    } else {
      return false;
    }
  }