/**
  * Sets a date pattern inFolder be used for the timestamp included in job output resources names.
  *
  * <p>
  *
  * <p>The pattern should be a valid pattern as defined by <code>java.text.SimpleDateFormat</code>
  * and can only contain underscores, dots and dashes as token separators.
  *
  * @param timestampPattern
  * @see #setSequentialFilenames(boolean)
  * @since 3.0
  */
 public ReportJobRepositoryDestinationModel setTimestampPattern(String timestampPattern) {
   super.setTimestampPattern(timestampPattern);
   return this;
 }