* @param newName the new name of the holiday set.
* @return the number of rows changed. It is 1, if successful, 0 otherwise.
*/
public static int renameHolidaySet(Connection connection, String oldName, String newName)
throws Exception {
return new TaskProcess(connection).renameHolidaySet(oldName, newName);
}