/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.calendar.test.util; import com.liferay.calendar.recurrence.Frequency; import com.liferay.calendar.recurrence.PositionalWeekday; import com.liferay.calendar.recurrence.Recurrence; import com.liferay.portal.kernel.util.TimeZoneUtil; import java.util.ArrayList; import java.util.TimeZone; /** * @author Adam Brandizzi */ public class RecurrenceTestUtil { public static Recurrence getDailyRecurrence() { return getDailyRecurrence(0, TimeZoneUtil.GMT, null); } public static Recurrence getDailyRecurrence(int count) { return getDailyRecurrence(count, TimeZoneUtil.GMT, null); } public static Recurrence getDailyRecurrence(int count, TimeZone timeZone) { return getDailyRecurrence(count, timeZone, null); } public static Recurrence getDailyRecurrence( int count, TimeZone timeZone, java.util.Calendar untilJCalendar) { return getRecurrence(count, Frequency.DAILY, timeZone, untilJCalendar); } public static Recurrence getDailyRecurrence( java.util.Calendar untilJCalendar) { return getDailyRecurrence(0, TimeZoneUtil.GMT, untilJCalendar); } public static Recurrence getDailyRecurrence(TimeZone timeZone) { return getDailyRecurrence(0, timeZone, null); } public static Recurrence getDailyRecurrence( TimeZone timeZone, java.util.Calendar untilJCalendar) { return getDailyRecurrence(0, timeZone, untilJCalendar); } public static Recurrence getRecurrence( int count, Frequency frequency, TimeZone timeZone, java.util.Calendar untilJCalendar) { Recurrence recurrence = new Recurrence(); recurrence.setCount(count); recurrence.setFrequency(frequency); recurrence.setPositionalWeekdays(new ArrayList<PositionalWeekday>()); recurrence.setTimeZone(timeZone); recurrence.setUntilJCalendar(untilJCalendar); return recurrence; } }