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
-
Method Summary
Modifier and TypeMethodDescriptionstatic String
default String
Returns the default user todolist UIDdefault String
getUserCreatedTodoList
(String uniqueUid) Returns the UID of user-created todolistsstatic String
userCreatedTodoList
(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
- theUser
UID- 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
-