Package net.bluemind.core.container.api
Interface IOwnerSubscriptions
- All Superinterfaces:
IChangelogSupport
,IReadByIdSupport<ContainerSubscriptionModel>
- All Known Subinterfaces:
IInternalOwnerSubscriptions
@Path("/containers/_subscriptions/{domainUid}/{ownerUid}")
public interface IOwnerSubscriptions
extends IChangelogSupport, IReadByIdSupport<ContainerSubscriptionModel>
-
Method Summary
Modifier and TypeMethodDescriptionfullChangesetById
(Long since) getComplete
(String uid) getMultiple
(List<String> uids) list()
Methods inherited from interface net.bluemind.core.container.api.IChangelogSupport
allIds, changeset, changesetById, filteredChangesetById, getVersion, itemChangelog
Methods inherited from interface net.bluemind.core.container.api.IReadByIdSupport
getCompleteById, multipleGetById
-
Method Details
-
list
- Throws:
ServerFault
-
getComplete
@GET @Path("{uid}/complete") ItemValue<ContainerSubscriptionModel> getComplete(@PathParam("uid") String uid) -
getMultiple
-
fullChangesetById
@GET @Path("_fullChangesetById") ContainerChangeset<ItemIdentifier> fullChangesetById(@QueryParam("since") Long since) - Parameters:
since
-- Returns:
- if successful, return a
ContainerChangeset
withItemIdentifier
- Throws:
ServerFault
- when an error occurs
-