@ProviderType public class SubscriptionLocalServiceWrapper extends Object implements SubscriptionLocalService, ServiceWrapper<SubscriptionLocalService>
SubscriptionLocalService
.SubscriptionLocalService
Constructor and Description |
---|
SubscriptionLocalServiceWrapper(SubscriptionLocalService subscriptionLocalService) |
Modifier and Type | Method and Description |
---|---|
Subscription |
addSubscription(long userId,
long groupId,
String className,
long classPK)
Subscribes the user to the entity, notifying him the instant the entity
is created, deleted, or modified.
|
Subscription |
addSubscription(long userId,
long groupId,
String className,
long classPK,
String frequency)
Subscribes the user to the entity, notifying him at the given frequency.
|
Subscription |
addSubscription(Subscription subscription)
Adds the subscription to the database.
|
Subscription |
createSubscription(long subscriptionId)
Creates a new subscription with the primary key.
|
PersistedModel |
deletePersistedModel(PersistedModel persistedModel) |
Subscription |
deleteSubscription(long subscriptionId)
Deletes the subscription with the primary key from the database.
|
void |
deleteSubscription(long userId,
String className,
long classPK)
Deletes the user's subscription to the entity.
|
Subscription |
deleteSubscription(Subscription subscription)
Deletes the subscription from the database.
|
void |
deleteSubscriptions(long userId)
Deletes all the subscriptions of the user.
|
void |
deleteSubscriptions(long userId,
long groupId) |
void |
deleteSubscriptions(long companyId,
String className,
long classPK)
Deletes all the subscriptions to the entity.
|
DynamicQuery |
dynamicQuery() |
<T> List<T> |
dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows.
|
<T> List<T> |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
Performs a dynamic query on the database and returns a range of the matching rows.
|
<T> List<T> |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator<T> orderByComparator)
Performs a dynamic query on the database and returns an ordered range of the matching rows.
|
long |
dynamicQueryCount(DynamicQuery dynamicQuery)
Returns the number of rows matching the dynamic query.
|
long |
dynamicQueryCount(DynamicQuery dynamicQuery,
Projection projection)
Returns the number of rows matching the dynamic query.
|
Subscription |
fetchSubscription(long subscriptionId) |
Subscription |
fetchSubscription(long companyId,
long userId,
String className,
long classPK) |
ActionableDynamicQuery |
getActionableDynamicQuery() |
IndexableActionableDynamicQuery |
getIndexableActionableDynamicQuery() |
String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
PersistedModel |
getPersistedModel(Serializable primaryKeyObj) |
Subscription |
getSubscription(long subscriptionId)
Returns the subscription with the primary key.
|
Subscription |
getSubscription(long companyId,
long userId,
String className,
long classPK)
Returns the subscription of the user to the entity.
|
List<Subscription> |
getSubscriptions(int start,
int end)
Returns a range of all the subscriptions.
|
List<Subscription> |
getSubscriptions(long companyId,
long userId,
String className,
long[] classPKs)
Returns all the subscriptions of the user to the entities.
|
List<Subscription> |
getSubscriptions(long companyId,
String className,
long classPK)
Returns all the subscriptions to the entity.
|
int |
getSubscriptionsCount()
Returns the number of subscriptions.
|
List<Subscription> |
getUserSubscriptions(long userId,
int start,
int end,
OrderByComparator<Subscription> orderByComparator)
Returns an ordered range of all the subscriptions of the user.
|
List<Subscription> |
getUserSubscriptions(long userId,
String className)
Returns all the subscriptions of the user to the entities with the class
name.
|
int |
getUserSubscriptionsCount(long userId)
Returns the number of subscriptions of the user.
|
SubscriptionLocalService |
getWrappedService() |
boolean |
isSubscribed(long companyId,
long userId,
String className,
long classPK)
Returns
true if the user is subscribed to the entity. |
boolean |
isSubscribed(long companyId,
long userId,
String className,
long[] classPKs)
Returns
true if the user is subscribed to any of the
entities. |
void |
setWrappedService(SubscriptionLocalService subscriptionLocalService) |
Subscription |
updateSubscription(Subscription subscription)
Updates the subscription in the database or adds it if it does not yet exist.
|
public SubscriptionLocalServiceWrapper(SubscriptionLocalService subscriptionLocalService)
public Subscription addSubscription(long userId, long groupId, String className, long classPK) throws PortalException
If there is no asset entry with the class name and class PK a new asset entry is created.
A social activity for the subscription is created using the asset entry associated with the class name and class PK, or the newly created asset entry.
addSubscription
in interface SubscriptionLocalService
userId
- the primary key of the usergroupId
- the primary key of the entity's groupclassName
- the entity's class nameclassPK
- the primary key of the entity's instancePortalException
public Subscription addSubscription(long userId, long groupId, String className, long classPK, String frequency) throws PortalException
If there is no asset entry with the class name and class PK a new asset entry is created.
A social activity for the subscription is created using the asset entry associated with the class name and class PK, or the newly created asset entry.
addSubscription
in interface SubscriptionLocalService
userId
- the primary key of the usergroupId
- the primary key of the entity's groupclassName
- the entity's class nameclassPK
- the primary key of the entity's instancefrequency
- the frequency for notificationsPortalException
public Subscription addSubscription(Subscription subscription)
addSubscription
in interface SubscriptionLocalService
subscription
- the subscriptionpublic Subscription createSubscription(long subscriptionId)
createSubscription
in interface SubscriptionLocalService
subscriptionId
- the primary key for the new subscriptionpublic PersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException
deletePersistedModel
in interface PersistedModelLocalService
deletePersistedModel
in interface SubscriptionLocalService
PortalException
public Subscription deleteSubscription(long subscriptionId) throws PortalException
deleteSubscription
in interface SubscriptionLocalService
subscriptionId
- the primary key of the subscriptionPortalException
- if a subscription with the primary key could not be foundpublic void deleteSubscription(long userId, String className, long classPK) throws PortalException
deleteSubscription
in interface SubscriptionLocalService
userId
- the primary key of the userclassName
- the entity's class nameclassPK
- the primary key of the entity's instancePortalException
public Subscription deleteSubscription(Subscription subscription) throws PortalException
deleteSubscription
in interface SubscriptionLocalService
subscription
- the subscriptionPortalException
public void deleteSubscriptions(long userId) throws PortalException
deleteSubscriptions
in interface SubscriptionLocalService
userId
- the primary key of the userPortalException
public void deleteSubscriptions(long userId, long groupId) throws PortalException
deleteSubscriptions
in interface SubscriptionLocalService
PortalException
public void deleteSubscriptions(long companyId, String className, long classPK) throws PortalException
deleteSubscriptions
in interface SubscriptionLocalService
companyId
- the primary key of the companyclassName
- the entity's class nameclassPK
- the primary key of the entity's instancePortalException
public DynamicQuery dynamicQuery()
dynamicQuery
in interface SubscriptionLocalService
public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery)
dynamicQuery
in interface SubscriptionLocalService
dynamicQuery
- the dynamic querypublic <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil.ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil.ALL_POS
), then the query will include the default ORDER BY logic from SubscriptionModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
dynamicQuery
in interface SubscriptionLocalService
dynamicQuery
- the dynamic querystart
- the lower bound of the range of model instancesend
- the upper bound of the range of model instances (not inclusive)public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<T> orderByComparator)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil.ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil.ALL_POS
), then the query will include the default ORDER BY logic from SubscriptionModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
dynamicQuery
in interface SubscriptionLocalService
dynamicQuery
- the dynamic querystart
- the lower bound of the range of model instancesend
- the upper bound of the range of model instances (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public long dynamicQueryCount(DynamicQuery dynamicQuery)
dynamicQueryCount
in interface SubscriptionLocalService
dynamicQuery
- the dynamic querypublic long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
dynamicQueryCount
in interface SubscriptionLocalService
dynamicQuery
- the dynamic queryprojection
- the projection to apply to the querypublic Subscription fetchSubscription(long subscriptionId)
fetchSubscription
in interface SubscriptionLocalService
public Subscription fetchSubscription(long companyId, long userId, String className, long classPK)
fetchSubscription
in interface SubscriptionLocalService
public ActionableDynamicQuery getActionableDynamicQuery()
getActionableDynamicQuery
in interface SubscriptionLocalService
public IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
getIndexableActionableDynamicQuery
in interface SubscriptionLocalService
public String getOSGiServiceIdentifier()
getOSGiServiceIdentifier
in interface SubscriptionLocalService
public PersistedModel getPersistedModel(Serializable primaryKeyObj) throws PortalException
getPersistedModel
in interface PersistedModelLocalService
getPersistedModel
in interface SubscriptionLocalService
PortalException
public Subscription getSubscription(long subscriptionId) throws PortalException
getSubscription
in interface SubscriptionLocalService
subscriptionId
- the primary key of the subscriptionPortalException
- if a subscription with the primary key could not be foundpublic Subscription getSubscription(long companyId, long userId, String className, long classPK) throws PortalException
getSubscription
in interface SubscriptionLocalService
companyId
- the primary key of the companyuserId
- the primary key of the userclassName
- the entity's class nameclassPK
- the primary key of the entity's instancePortalException
public List<Subscription> getSubscriptions(int start, int end)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil.ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil.ALL_POS
), then the query will include the default ORDER BY logic from SubscriptionModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
getSubscriptions
in interface SubscriptionLocalService
start
- the lower bound of the range of subscriptionsend
- the upper bound of the range of subscriptions (not inclusive)public List<Subscription> getSubscriptions(long companyId, long userId, String className, long[] classPKs)
getSubscriptions
in interface SubscriptionLocalService
companyId
- the primary key of the companyuserId
- the primary key of the userclassName
- the entity's class nameclassPKs
- the primary key of the entitiespublic List<Subscription> getSubscriptions(long companyId, String className, long classPK)
getSubscriptions
in interface SubscriptionLocalService
companyId
- the primary key of the companyclassName
- the entity's class nameclassPK
- the primary key of the entity's instancepublic int getSubscriptionsCount()
getSubscriptionsCount
in interface SubscriptionLocalService
public List<Subscription> getUserSubscriptions(long userId, int start, int end, OrderByComparator<Subscription> orderByComparator)
getUserSubscriptions
in interface SubscriptionLocalService
userId
- the primary key of the userstart
- the lower bound of the range of resultsend
- the upper bound of the range of results (not inclusive)orderByComparator
- the comparator to order the subscriptionspublic List<Subscription> getUserSubscriptions(long userId, String className)
getUserSubscriptions
in interface SubscriptionLocalService
userId
- the primary key of the userclassName
- the entity's class namepublic int getUserSubscriptionsCount(long userId)
getUserSubscriptionsCount
in interface SubscriptionLocalService
userId
- the primary key of the userpublic boolean isSubscribed(long companyId, long userId, String className, long classPK)
true
if the user is subscribed to the entity.isSubscribed
in interface SubscriptionLocalService
companyId
- the primary key of the companyuserId
- the primary key of the userclassName
- the entity's class nameclassPK
- the primary key of the entity's instancetrue
if the user is subscribed to the entity;
false
otherwisepublic boolean isSubscribed(long companyId, long userId, String className, long[] classPKs)
true
if the user is subscribed to any of the
entities.isSubscribed
in interface SubscriptionLocalService
companyId
- the primary key of the companyuserId
- the primary key of the userclassName
- the entity's class nameclassPKs
- the primary key of the entitiestrue
if the user is subscribed to any of the
entities; false
otherwisepublic Subscription updateSubscription(Subscription subscription)
updateSubscription
in interface SubscriptionLocalService
subscription
- the subscriptionpublic SubscriptionLocalService getWrappedService()
getWrappedService
in interface ServiceWrapper<SubscriptionLocalService>
public void setWrappedService(SubscriptionLocalService subscriptionLocalService)
setWrappedService
in interface ServiceWrapper<SubscriptionLocalService>