@Path(value="/folders/{mailboxUid}")
public interface IFolderHierarchy
| Modifier and Type | Method and Description |
|---|---|
java.util.List<java.lang.String> |
allUids() |
ItemValue<Folder> |
byContentUri(java.lang.String uri) |
ItemValue<Folder> |
byId(java.lang.Long id) |
java.util.List<ItemValue<Folder>> |
byParentId(java.lang.Long pid) |
ItemValue<Folder> |
byUid(java.lang.Long uid) |
ContainerChangelog |
changelog(java.lang.Long since)
ChangeLog of the container since
|
ContainerChangeset<java.lang.String> |
changeset(java.lang.Long since)
ChangeSet of the container since
|
ContainerChangeset<java.lang.Long> |
changesetById(java.lang.Long since)
ChangeSet of the container since
|
ItemValue<Folder> |
getComplete(java.lang.String uid)
Fetch a
Folder from its unique uid |
java.util.List<ItemValue<Folder>> |
multipleGet(java.util.List<java.lang.String> uids)
Fetch multiple
Folders from theirs uniques uids |
void |
reset() |
ListResult<ItemValue<Folder>> |
search(FolderQuery query)
Searches for the
Folders items in the container using the given
query |
@GET
@Path(value="{uid}/complete")
ItemValue<Folder> getComplete(@PathParam(value="uid")
java.lang.String uid)
throws ServerFault
Folder from its unique uiduid - ItemValueServerFault@POST @Path(value="_mget") java.util.List<ItemValue<Folder>> multipleGet(java.util.List<java.lang.String> uids) throws ServerFault
Folders from theirs uniques uidsuids - List> ServerFault@GET @Path(value="_changelog") ContainerChangelog changelog(java.lang.Long since) throws ServerFault
since - timestamp of first changes we want to retrieveContainerChangelogServerFault@GET @Path(value="_changeset") ContainerChangeset<java.lang.String> changeset(@QueryParam(value="since") java.lang.Long since) throws ServerFault
since - timestamp of first changes we want to retrieveServerFault@GET @Path(value="_changesetById") ContainerChangeset<java.lang.Long> changesetById(@QueryParam(value="since") java.lang.Long since) throws ServerFault
since - timestamp of first changes we want to retrieveServerFault@GET @Path(value="by_uri") ItemValue<Folder> byContentUri(@QueryParam(value="uri") java.lang.String uri) throws ServerFault
ServerFault@GET @Path(value="by_parent_id") java.util.List<ItemValue<Folder>> byParentId(@QueryParam(value="parent") java.lang.Long pid) throws ServerFault
ServerFault@GET @Path(value="by_uid") ItemValue<Folder> byUid(@QueryParam(value="uid") java.lang.Long uid) throws ServerFault
ServerFault@GET @Path(value="by_id") ItemValue<Folder> byId(@QueryParam(value="id") java.lang.Long id) throws ServerFault
ServerFault@POST @Path(value="_search") ListResult<ItemValue<Folder>> search(FolderQuery query) throws ServerFault
Folders items in the container using the given
queryquery - the search criteriaFolder objectsServerFault@GET
@Path(value="_alluids")
java.util.List<java.lang.String> allUids()
throws ServerFault
ServerFault@POST
@Path(value="_reset")
void reset()
throws ServerFault
ServerFaultCopyright © 2021. All Rights Reserved.