/**
   * Creates a new panic button with the primary key. Does not add the panic button to the database.
   *
   * @param panicButtonId the primary key for the new panic button
   * @return the new panic button
   */
  public PanicButton create(long panicButtonId) {
    PanicButton panicButton = new PanicButtonImpl();

    panicButton.setNew(true);
    panicButton.setPrimaryKey(panicButtonId);

    return panicButton;
  }