/**
   * Creates a new d l sync with the primary key. Does not add the d l sync to the database.
   *
   * @param syncId the primary key for the new d l sync
   * @return the new d l sync
   */
  public DLSync create(long syncId) {
    DLSync dlSync = new DLSyncImpl();

    dlSync.setNew(true);
    dlSync.setPrimaryKey(syncId);

    return dlSync;
  }