public int compareTo(HRAssetType hrAssetType) {
    long primaryKey = hrAssetType.getPrimaryKey();

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

    HRAssetType hrAssetType = null;

    try {
      hrAssetType = (HRAssetType) obj;
    } catch (ClassCastException cce) {
      return false;
    }

    long primaryKey = hrAssetType.getPrimaryKey();

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