cal.set(2000, 11, 31, 23, 0, 0);
bean.setStartDate(cal.getTime());
cal.set(2100, 11, 31, 0, 0, 0);
bean.setEndDate(cal.getTime());
Set<BareDate> closingDays = new HashSet<BareDate>();
closingDays.add(new BareDate(2012, 12, 25));
closingDays.add(new BareDate(2012, 12, 31));
closingDays.add(new BareDate(2011, 1, 1));
bean.setClosingDays(closingDays);
Set<WeekTradingDay> weekTradingDays = new HashSet<WeekTradingDay>();
TradingPeriodBean tpBeanUnique = new TradingPeriodBean();
tpBeanUnique.setStartHour(10);
tpBeanUnique.setStartMinute(0);