@Path(value="/todolists/vtodos/{containerUid}")
public interface IVTodo
Modifier and Type | Method and Description |
---|---|
Stream |
exportAll()
Export all
VTodo from a todolist as iCalendar VTodo objects. |
Stream |
exportTodos(java.util.List<java.lang.String> uids)
Export a list of
VTodo as iCalendar VTodo objects |
TaskRef |
importIcs(java.lang.String ics)
Imports an ICS
|
@GET @Produces(value="text/calendar") Stream exportAll() throws ServerFault
VTodo
from a todolist as iCalendar VTodo objects.Stream
of iCalendar VTodo list.ServerFault
- common error objecthttps://tools.ietf.org/html/rfc5545#section-3.6.2.
@POST @Produces(value="text/calendar") Stream exportTodos(java.util.List<java.lang.String> uids) throws ServerFault
VTodo
as iCalendar VTodo objectsuids
- List of ItemValue.uid
to exportStream
of iCalendar VTodo list.ServerFault
- common error objecthttps://tools.ietf.org/html/rfc5545#section-3.6.2.
@PUT TaskRef importIcs(java.lang.String ics) throws ServerFault
ics
- data in ICS formatTaskRef
which can be used to track
this asynchronous operationServerFault
- common error objectCopyright © 2021. All Rights Reserved.