Interface INoteUids


@Path("/notes/uids") public interface INoteUids
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 notes container UIDs
  • Field Details

  • Method Details

    • getDefaultUserNotes

      @GET @Path("{uid}/_default_notes") default String getDefaultUserNotes(@PathParam("uid") String uid)
      Returns the default user notes UID
      Parameters:
      uid - the User UID
      Returns:
      default user notes UID
    • getUserCreatedNotes

      @GET @Path("{uid}/_other_notes") default String getUserCreatedNotes(@PathParam("uid") String uniqueUid)
      Returns the UID of user-created notes
      Parameters:
      uniqueUid - unique notes UID
      Returns:
      user notes UID
    • defaultUserNotes

      static String defaultUserNotes(String uid)
    • userCreatedNotes

      static String userCreatedNotes(String uid)