iCalendar templates for common use-cases
iCal4j Templates is designed to make the iCalendar specifications more accessible by providing a discoverable API for common applications. For example, a simple meeting or task may not require the full functionality provided by iCalendar, but you still need to understand it in order to produce valid content.
This library aims to make it easier to construct valid iCalendar content without needing to read the specifications in full.
Templates includes in this library are used to create or modify iCalendar objects.
Template domains are simply a grouping of related templates that may be applied to a specific problem domain. Currently, the supported domains include:
- Groupware - support for collaborative applications
- Project - Project management
- Agile - agile management processes
- Workflow - Work management
- Catalog - develop a service catalog
- Wiki - knowledge management
Support collaborative features such as calendar and task management, scheduling appointments and meetings, as well as journaling and note-taking.
Meetings are scheduled with two or more participants, and may be created as follows:
VEvent meeting = new Meeting().start(ZonedDateTime.of(...))
.required(URI.create("mailto:[email protected]")).required(URI.create("mailto:[email protected]"))
.optional(URI.create("mailto:[email protected]"))
.chair(URI.create("mailto:[email protected]")).apply();
TBD.
TBD.
Journal your workflows and deliverables as you work. Build a relational graph of people, teams, outputs and dependencies.
Maintain a graph of customer and vendor relationships. Track offers and orders, and monitor customer satisfaction.
TBD.