views:

90

answers:

1

Hi. I have a j2ee web application which supports scheduling of execution of jobs. I am looking for a free calendar component written in java which allows scheduling functionalities as well as capable of changing view mode of tasks either by viewing taks for whole year, month view, week view, day view. Do you have any suggestion.

Im sorry something came up with the implementation. I dnt have to use this calendar for triggering or calling jobs. I just need to retrieve schedules from database and display it in diff view modes. SO it's just some kind of GUI functionality

A: 

Assuming you are using Quartz Scheduler to get your task view modes you would need to iterate through your triggers and use TriggerUtils.computeFireTimesBetween(Trigger trigg, Calendar cal, Date from, Date to).

Maybe you could develop a Quartz Scheduler JobStore => iCal component (by using iCal4J).

There may be other solutions => http://java-source.net/open-source/job-schedulers

Mark McLaren
i have update above. so maybe there's something out there not that complicated as quartz. :D
cedric