Package net.bluemind.addressbook.api
Interface IAddressBookUids
@Path("/addressbook/uids")
public interface IAddressBookUids
Returns common addressbook container UIDs. All related entries are stored
within the container
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic String
collectedContactsUserAddressbook
(String userUid) static String
defaultUserAddressbook
(String userUid) default String
Returns the UID of collected contactsdefault String
getDefaultUserAddressbook
(String userUid) Returns the default user addressbook UIDdefault String
getUserCreatedAddressbook
(String uniqueUid) Returns the UID of user-created addressbooksdefault String
getUserVCards
(String domainUid) Returns the UID of the domain addressbokstatic String
userCreatedAddressbook
(String randomSeed) static String
userVCards
(String domainUid)
-
Field Details
-
TYPE
- See Also:
-
-
Method Details
-
getDefaultUserAddressbook
@GET @Path("{uid}/_default_addressbook") default String getDefaultUserAddressbook(@PathParam("uid") String userUid) Returns the default user addressbook UID- Parameters:
userUid
- theUser
UID- Returns:
- default user addressbook UID
-
getCollectedContactsUserAddressbook
@GET @Path("{uid}/_collected_contacts") default String getCollectedContactsUserAddressbook(@PathParam("uid") String userUid) Returns the UID of collected contacts- Parameters:
userUid
- theUser
UID- Returns:
- UID of collected contacts
-
getUserCreatedAddressbook
@GET @Path("{uid}/_other_addressbook") default String getUserCreatedAddressbook(@PathParam("uid") String uniqueUid) Returns the UID of user-created addressbooks- Parameters:
uniqueUid
- A unique UID- Returns:
- the UID of the user-created addressbook
-
getUserVCards
Returns the UID of the domain addressbok- Parameters:
domainUid
- theDomain
's UID- Returns:
- UID of the domain addressbok
-
defaultUserAddressbook
-
collectedContactsUserAddressbook
-
userCreatedAddressbook
-
userVCards
-