Package net.bluemind.notes.api
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 Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic String
defaultUserNotes
(String uid) default String
Returns the default user notes UIDdefault String
getUserCreatedNotes
(String uniqueUid) Returns the UID of user-created notesstatic String
userCreatedNotes
(String uid)
-
Field Details
-
TYPE
- See Also:
-
-
Method Details
-
getDefaultUserNotes
Returns the default user notes UID- Parameters:
uid
- theUser
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
-
userCreatedNotes
-