/**
   * Creates a new h r client with the primary key. Does not add the h r client to the database.
   *
   * @param hrClientId the primary key for the new h r client
   * @return the new h r client
   */
  public HRClient create(long hrClientId) {
    HRClient hrClient = new HRClientImpl();

    hrClient.setNew(true);
    hrClient.setPrimaryKey(hrClientId);

    return hrClient;
  }