Uses of Interface
se.conciliate.extensions.store.MTSubscriber
Packages that use MTSubscriber
Package
Description
Provides a means to create, retrieve, update and delete all different
persistently stored objects.
Provide a means to listen to changes in the stores.
Provides utility classes to perform queries against the current workspace.
-
Uses of MTSubscriber in se.conciliate.extensions.store
Methods in se.conciliate.extensions.store that return MTSubscriberModifier and TypeMethodDescriptionMTServer.createSubscriber
(String email) Creates a new subscriber.MTServer.createSubscriberGroup
(String groupName) Creates a new subscriber group.MTServer.findSubscriber
(String email) Returns theMTSubscriber
with the emailemail
.Methods in se.conciliate.extensions.store that return types with arguments of type MTSubscriberModifier and TypeMethodDescriptionMTNotificationStore.findSubscribers()
Returns all subscribers.MTNotificationStore.findSubscribers
(List<Long> ids) Finds subscribers.MTNotificationStore.findSubscribersByEmails
(List<String> emails) Finds subscribers.MTNotificationStore.findSubscribersInModel
(long modelID) Returns a list of all subscribers that have been added to the model with the given id.MTNotificationStore.findSubscribersInModels
(Long... modelIDs) Returns a list of subscribers that is common in all the models with the given ids.MTModel.getSubscribers()
Returns the subscribers of this model.Methods in se.conciliate.extensions.store with parameters of type MTSubscriberModifier and TypeMethodDescriptionvoid
MTSubscriber.addMember
(MTSubscriber subscriber) default boolean
MTSubscriber.isMemberOfGroup
(MTSubscriber group) void
MTSubscriber.removeFromGroup
(MTSubscriber group) void
MTSubscriber.removeMember
(MTSubscriber subscriber) void
MTBulkOperations.saveSubscriber
(MTSubscriber subscriber) Method parameters in se.conciliate.extensions.store with type arguments of type MTSubscriberModifier and TypeMethodDescriptionvoid
MTModel.setSubscribers
(Set<MTSubscriber> subscribers) Deprecated.This has been replaced by MTModelStore.setSubscribers which can update subscribers on locked revisions of models.void
MTModelStore.setSubscribers
(Map<? extends MTModelHeader, Set<MTSubscriber>> subscribers) Sets subscribers on models. -
Uses of MTSubscriber in se.conciliate.extensions.store.event
Methods in se.conciliate.extensions.store.event with parameters of type MTSubscriberModifier and TypeMethodDescriptionvoid
MTSubscriberListener.subscriberAdded
(MTSubscriber added) Called when a subscriber is added/created.void
MTSubscriberListener.subscriberChanged
(MTSubscriber subscriber) Called when a subscriber has changed.void
MTSubscriberListener.subscriberRemoved
(MTSubscriber removed) Called when a subscriber is removed. -
Uses of MTSubscriber in se.conciliate.extensions.store.query
Methods in se.conciliate.extensions.store.query that return types with arguments of type MTSubscriberModifier and TypeMethodDescriptionMTQuery.State.getSubscriberGroups()
MTQuery.State.getSubscribers()
Methods in se.conciliate.extensions.store.query with parameters of type MTSubscriberModifier and TypeMethodDescriptionMTModelQuery.withSubscribers
(boolean includeNoSubscriber, MTSubscriber... subscribers) Retains only models with at least one of the given subscribers set as subscriber of the model.Method parameters in se.conciliate.extensions.store.query with type arguments of type MTSubscriberModifier and TypeMethodDescriptionMTSubscriberQuery.withSubscriberGroups
(Collection<MTSubscriber> groups) Selects members of given groups.