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
Fields - 
Method Summary
Modifier and TypeMethodDescriptionstatic StringdefaultUserNotes(String uid) default StringReturns the default user notes UIDdefault StringgetUserCreatedNotes(String uniqueUid) Returns the UID of user-created notesstatic StringuserCreatedNotes(String uid)  
- 
Field Details
- 
TYPE
- See Also:
 
 
 - 
 - 
Method Details
- 
getDefaultUserNotes
Returns the default user notes UID- Parameters:
 uid- theUserUID- 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
 
 -