Hi

Thanks for your query. We actually had a conf call about this and we found the way that you can do this:

It is quite an explicit mechanism, you can see AbstractBackwardDateCalculatorTest.java

Here is the example:

final WorkingWeek ww = new WorkingWeek().withWorkingDayFromCalendar(false, Calendar.MONDAY).withWorkingDayFromCalendar(
true, Calendar.TUESDAY).withWorkingDayFromCalendar(true, Calendar.WEDNESDAY).withWorkingDayFromCalendar(true,
Calendar.THURSDAY).withWorkingDayFromCalendar(true, Calendar.FRIDAY).withWorkingDayFromCalendar(false,
Calendar.SATURDAY).withWorkingDayFromCalendar(false, Calendar.SUNDAY);

calculator.setWorkingWeek(new JodaWorkingWeek(ww));

Hope this helps

Let us know

Benoit & Marcin