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 Details

  • Method Details

    • getDefaultUserTodoList

      @GET @Path("{uid}/_default_todolist") default String getDefaultUserTodoList(@PathParam("uid") String uid)
      Returns the default user todolist UID
      Parameters:
      uid - the User 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

      static String defaultUserTodoList(String uid)
    • userCreatedTodoList

      static String userCreatedTodoList(String seed)