Package net.bluemind.todolist.api
Interface ITodoUids
@Path("/todolist/uids")
public interface ITodoUids
To unify the management of changelogs, ACLs, client synchronization,
 permissions and sharing, Bluemind stores all elements in a generic structure
 called a container. All containers are identified by a unique ID. Some
 containers are named (UID) in a specific manner to express a certain meaning.
 
 
 Returns specific todolist container UIDs
- 
Field Summary
Fields - 
Method Summary
Modifier and TypeMethodDescriptionstatic Stringdefault StringReturns the default user todolist UIDdefault StringgetUserCreatedTodoList(String uniqueUid) Returns the UID of user-created todolistsstatic StringuserCreatedTodoList(String seed)  
- 
Field Details
- 
TYPE
- See Also:
 
 
 - 
 - 
Method Details
- 
getDefaultUserTodoList
@GET @Path("{uid}/_default_todolist") default String getDefaultUserTodoList(@PathParam("uid") String uid) Returns the default user todolist UID- Parameters:
 uid- theUserUID- Returns:
 - default user todolist UID
 
 - 
getUserCreatedTodoList
@GET @Path("{uid}/_other_todolist") default String getUserCreatedTodoList(@PathParam("uid") String uniqueUid) Returns the UID of user-created todolists- Parameters:
 uniqueUid- unique todolist UID- Returns:
 - calendar UID
 
 - 
defaultUserTodoList
 - 
userCreatedTodoList
 
 -