Class SubscriptionLocalServiceWrapper
- All Implemented Interfaces:
BaseLocalService,PersistedModelLocalService,ServiceWrapper<SubscriptionLocalService>,SubscriptionLocalService
SubscriptionLocalService.- Author:
- Brian Wing Shun Chan
- See Also:
- {$generated.description}
-
Constructor Summary
ConstructorsConstructorDescriptionDeprecated.SubscriptionLocalServiceWrapper(SubscriptionLocalService subscriptionLocalService) Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionaddSubscription(long userId, long groupId, String className, long classPK) Deprecated.Subscribes the user to the entity, notifying him the instant the entity is created, deleted, or modified.addSubscription(long userId, long groupId, String className, long classPK, String frequency) Deprecated.Subscribes the user to the entity, notifying him at the given frequency.addSubscription(Subscription subscription) Deprecated.Adds the subscription to the database.createPersistedModel(Serializable primaryKeyObj) Deprecated.createSubscription(long subscriptionId) Deprecated.Creates a new subscription with the primary key.deletePersistedModel(PersistedModel persistedModel) Deprecated.deleteSubscription(long subscriptionId) Deprecated.Deletes the subscription with the primary key from the database.voiddeleteSubscription(long userId, String className, long classPK) Deprecated.Deletes the user's subscription to the entity.deleteSubscription(Subscription subscription) Deprecated.Deletes the subscription from the database.voiddeleteSubscriptions(long userId) Deprecated.Deletes all the subscriptions of the user.voiddeleteSubscriptions(long userId, long groupId) Deprecated.voiddeleteSubscriptions(long companyId, String className, long classPK) Deprecated.Deletes all the subscriptions to the entity.<T> TdslQuery(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery) Deprecated.intdslQueryCount(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery) Deprecated.Deprecated.<T> List<T>dynamicQuery(DynamicQuery dynamicQuery) Deprecated.Performs a dynamic query on the database and returns the matching rows.<T> List<T>dynamicQuery(DynamicQuery dynamicQuery, int start, int end) Deprecated.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) Deprecated.Performs a dynamic query on the database and returns an ordered range of the matching rows.longdynamicQueryCount(DynamicQuery dynamicQuery) Deprecated.Returns the number of rows matching the dynamic query.longdynamicQueryCount(DynamicQuery dynamicQuery, Projection projection) Deprecated.Returns the number of rows matching the dynamic query.fetchSubscription(long subscriptionId) Deprecated.fetchSubscription(long companyId, long userId, String className, long classPK) Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Returns the OSGi service identifier.getPersistedModel(Serializable primaryKeyObj) Deprecated.getSubscription(long subscriptionId) Deprecated.Returns the subscription with the primary key.getSubscription(long companyId, long userId, String className, long classPK) Deprecated.Returns the subscription of the user to the entity.getSubscriptions(int start, int end) Deprecated.Returns a range of all the subscriptions.getSubscriptions(long companyId, long userId, String className, long[] classPKs) Deprecated.Returns all the subscriptions of the user to the entities.getSubscriptions(long companyId, String className, long classPK) Deprecated.Returns all the subscriptions to the entity.intDeprecated.Returns the number of subscriptions.getUserSubscriptions(long userId, int start, int end, OrderByComparator<Subscription> orderByComparator) Deprecated.Returns an ordered range of all the subscriptions of the user.getUserSubscriptions(long userId, String className) Deprecated.Returns all the subscriptions of the user to the entities with the class name.intgetUserSubscriptionsCount(long userId) Deprecated.Returns the number of subscriptions of the user.Deprecated.booleanisSubscribed(long companyId, long userId, String className, long classPK) Deprecated.Returnstrueif the user is subscribed to the entity.booleanisSubscribed(long companyId, long userId, String className, long[] classPKs) Deprecated.Returnstrueif the user is subscribed to any of the entities.voidsetWrappedService(SubscriptionLocalService subscriptionLocalService) Deprecated.updateSubscription(Subscription subscription) Deprecated.Updates the subscription in the database or adds it if it does not yet exist.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.liferay.portal.kernel.service.PersistedModelLocalService
fetchPersistedModel
-
Constructor Details
-
SubscriptionLocalServiceWrapper
public SubscriptionLocalServiceWrapper()Deprecated. -
SubscriptionLocalServiceWrapper
Deprecated.
-
-
Method Details
-
addSubscription
public Subscription addSubscription(long userId, long groupId, String className, long classPK) throws PortalException Deprecated.Subscribes the user to the entity, notifying him the instant the entity is created, deleted, or modified.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.
- Specified by:
addSubscriptionin interfaceSubscriptionLocalService- Parameters:
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 instance- Returns:
- the subscription
- Throws:
PortalException
-
addSubscription
public Subscription addSubscription(long userId, long groupId, String className, long classPK, String frequency) throws PortalException Deprecated.Subscribes the user to the entity, notifying him at the given frequency.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.
- Specified by:
addSubscriptionin interfaceSubscriptionLocalService- Parameters:
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 notifications- Returns:
- the subscription
- Throws:
PortalException
-
addSubscription
Deprecated.Adds the subscription to the database. Also notifies the appropriate model listeners.Important: Inspect SubscriptionLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
- Specified by:
addSubscriptionin interfaceSubscriptionLocalService- Parameters:
subscription- the subscription- Returns:
- the subscription that was added
-
createPersistedModel
Deprecated.- Specified by:
createPersistedModelin interfacePersistedModelLocalService- Specified by:
createPersistedModelin interfaceSubscriptionLocalService- Throws:
PortalExceptionPortalException
-
createSubscription
Deprecated.Creates a new subscription with the primary key. Does not add the subscription to the database.- Specified by:
createSubscriptionin interfaceSubscriptionLocalService- Parameters:
subscriptionId- the primary key for the new subscription- Returns:
- the new subscription
-
deletePersistedModel
Deprecated.- Specified by:
deletePersistedModelin interfacePersistedModelLocalService- Specified by:
deletePersistedModelin interfaceSubscriptionLocalService- Throws:
PortalExceptionPortalException
-
deleteSubscription
Deprecated.Deletes the subscription with the primary key from the database. Also notifies the appropriate model listeners.Important: Inspect SubscriptionLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
- Specified by:
deleteSubscriptionin interfaceSubscriptionLocalService- Parameters:
subscriptionId- the primary key of the subscription- Returns:
- the subscription that was removed
- Throws:
PortalException- if a subscription with the primary key could not be foundPortalException
-
deleteSubscription
Deprecated.Deletes the user's subscription to the entity. A social activity with the unsubscribe action is created.- Specified by:
deleteSubscriptionin interfaceSubscriptionLocalService- Parameters:
userId- the primary key of the userclassName- the entity's class nameclassPK- the primary key of the entity's instance- Throws:
PortalException
-
deleteSubscription
Deprecated.Deletes the subscription from the database. Also notifies the appropriate model listeners.Important: Inspect SubscriptionLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
- Specified by:
deleteSubscriptionin interfaceSubscriptionLocalService- Parameters:
subscription- the subscription- Returns:
- the subscription that was removed
- Throws:
PortalExceptionPortalException
-
deleteSubscriptions
Deprecated.Deletes all the subscriptions of the user.- Specified by:
deleteSubscriptionsin interfaceSubscriptionLocalService- Parameters:
userId- the primary key of the user- Throws:
PortalException
-
deleteSubscriptions
Deprecated.- Specified by:
deleteSubscriptionsin interfaceSubscriptionLocalService- Throws:
PortalException
-
deleteSubscriptions
public void deleteSubscriptions(long companyId, String className, long classPK) throws PortalException Deprecated.Deletes all the subscriptions to the entity.- Specified by:
deleteSubscriptionsin interfaceSubscriptionLocalService- Parameters:
companyId- the primary key of the companyclassName- the entity's class nameclassPK- the primary key of the entity's instance- Throws:
PortalException
-
dslQuery
public <T> T dslQuery(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery) Deprecated.- Specified by:
dslQueryin interfacePersistedModelLocalService- Specified by:
dslQueryin interfaceSubscriptionLocalService
-
dslQueryCount
public int dslQueryCount(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery) Deprecated.- Specified by:
dslQueryCountin interfacePersistedModelLocalService- Specified by:
dslQueryCountin interfaceSubscriptionLocalService
-
dynamicQuery
Deprecated.- Specified by:
dynamicQueryin interfaceSubscriptionLocalService
-
dynamicQuery
Deprecated.Performs a dynamic query on the database and returns the matching rows.- Specified by:
dynamicQueryin interfaceSubscriptionLocalService- Parameters:
dynamicQuery- the dynamic query- Returns:
- the matching rows
-
dynamicQuery
Deprecated.Performs a dynamic query on the database and returns a range of the matching rows.Useful when paginating results. Returns a maximum of
end - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtocom.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromcom.liferay.portal.model.impl.SubscriptionModelImpl.- Specified by:
dynamicQueryin interfaceSubscriptionLocalService- Parameters:
dynamicQuery- the dynamic querystart- the lower bound of the range of model instancesend- the upper bound of the range of model instances (not inclusive)- Returns:
- the range of matching rows
-
dynamicQuery
public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<T> orderByComparator) Deprecated.Performs a dynamic query on the database and returns an ordered range of the matching rows.Useful when paginating results. Returns a maximum of
end - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtocom.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromcom.liferay.portal.model.impl.SubscriptionModelImpl.- Specified by:
dynamicQueryin interfaceSubscriptionLocalService- Parameters:
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 (optionallynull)- Returns:
- the ordered range of matching rows
-
dynamicQueryCount
Deprecated.Returns the number of rows matching the dynamic query.- Specified by:
dynamicQueryCountin interfaceSubscriptionLocalService- Parameters:
dynamicQuery- the dynamic query- Returns:
- the number of rows matching the dynamic query
-
dynamicQueryCount
Deprecated.Returns the number of rows matching the dynamic query.- Specified by:
dynamicQueryCountin interfaceSubscriptionLocalService- Parameters:
dynamicQuery- the dynamic queryprojection- the projection to apply to the query- Returns:
- the number of rows matching the dynamic query
-
fetchSubscription
Deprecated.- Specified by:
fetchSubscriptionin interfaceSubscriptionLocalService
-
fetchSubscription
Deprecated.- Specified by:
fetchSubscriptionin interfaceSubscriptionLocalService
-
getActionableDynamicQuery
Deprecated.- Specified by:
getActionableDynamicQueryin interfaceSubscriptionLocalService
-
getIndexableActionableDynamicQuery
Deprecated.- Specified by:
getIndexableActionableDynamicQueryin interfaceSubscriptionLocalService
-
getOSGiServiceIdentifier
Deprecated.Returns the OSGi service identifier.- Specified by:
getOSGiServiceIdentifierin interfaceSubscriptionLocalService- Returns:
- the OSGi service identifier
-
getPersistedModel
Deprecated.- Specified by:
getPersistedModelin interfacePersistedModelLocalService- Specified by:
getPersistedModelin interfaceSubscriptionLocalService- Throws:
PortalExceptionPortalException
-
getSubscription
Deprecated.Returns the subscription with the primary key.- Specified by:
getSubscriptionin interfaceSubscriptionLocalService- Parameters:
subscriptionId- the primary key of the subscription- Returns:
- the subscription
- Throws:
PortalException- if a subscription with the primary key could not be foundPortalException
-
getSubscription
public Subscription getSubscription(long companyId, long userId, String className, long classPK) throws PortalException Deprecated.Returns the subscription of the user to the entity.- Specified by:
getSubscriptionin interfaceSubscriptionLocalService- Parameters:
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 instance- Returns:
- the subscription of the user to the entity
- Throws:
PortalException
-
getSubscriptions
Deprecated.Returns a range of all the subscriptions.Useful when paginating results. Returns a maximum of
end - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtocom.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromcom.liferay.portal.model.impl.SubscriptionModelImpl.- Specified by:
getSubscriptionsin interfaceSubscriptionLocalService- Parameters:
start- the lower bound of the range of subscriptionsend- the upper bound of the range of subscriptions (not inclusive)- Returns:
- the range of subscriptions
-
getSubscriptions
public List<Subscription> getSubscriptions(long companyId, long userId, String className, long[] classPKs) Deprecated.Returns all the subscriptions of the user to the entities.- Specified by:
getSubscriptionsin interfaceSubscriptionLocalService- Parameters:
companyId- the primary key of the companyuserId- the primary key of the userclassName- the entity's class nameclassPKs- the primary key of the entities- Returns:
- the subscriptions of the user to the entities
-
getSubscriptions
Deprecated.Returns all the subscriptions to the entity.- Specified by:
getSubscriptionsin interfaceSubscriptionLocalService- Parameters:
companyId- the primary key of the companyclassName- the entity's class nameclassPK- the primary key of the entity's instance- Returns:
- the subscriptions to the entity
-
getSubscriptionsCount
public int getSubscriptionsCount()Deprecated.Returns the number of subscriptions.- Specified by:
getSubscriptionsCountin interfaceSubscriptionLocalService- Returns:
- the number of subscriptions
-
getUserSubscriptions
public List<Subscription> getUserSubscriptions(long userId, int start, int end, OrderByComparator<Subscription> orderByComparator) Deprecated.Returns an ordered range of all the subscriptions of the user.- Specified by:
getUserSubscriptionsin interfaceSubscriptionLocalService- Parameters:
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 subscriptions- Returns:
- the range of subscriptions of the user
-
getUserSubscriptions
Deprecated.Returns all the subscriptions of the user to the entities with the class name.- Specified by:
getUserSubscriptionsin interfaceSubscriptionLocalService- Parameters:
userId- the primary key of the userclassName- the entity's class name- Returns:
- the subscriptions of the user to the entities with the class name
-
getUserSubscriptionsCount
public int getUserSubscriptionsCount(long userId) Deprecated.Returns the number of subscriptions of the user.- Specified by:
getUserSubscriptionsCountin interfaceSubscriptionLocalService- Parameters:
userId- the primary key of the user- Returns:
- the number of subscriptions of the user
-
isSubscribed
Deprecated.Returnstrueif the user is subscribed to the entity.- Specified by:
isSubscribedin interfaceSubscriptionLocalService- Parameters:
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 instance- Returns:
trueif the user is subscribed to the entity;falseotherwise
-
isSubscribed
Deprecated.Returnstrueif the user is subscribed to any of the entities.- Specified by:
isSubscribedin interfaceSubscriptionLocalService- Parameters:
companyId- the primary key of the companyuserId- the primary key of the userclassName- the entity's class nameclassPKs- the primary key of the entities- Returns:
trueif the user is subscribed to any of the entities;falseotherwise
-
updateSubscription
Deprecated.Updates the subscription in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.Important: Inspect SubscriptionLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
- Specified by:
updateSubscriptionin interfaceSubscriptionLocalService- Parameters:
subscription- the subscription- Returns:
- the subscription that was updated
-
getBasePersistence
Deprecated.- Specified by:
getBasePersistencein interfacePersistedModelLocalService
-
getWrappedService
Deprecated.- Specified by:
getWrappedServicein interfaceServiceWrapper<SubscriptionLocalService>
-
setWrappedService
Deprecated.- Specified by:
setWrappedServicein interfaceServiceWrapper<SubscriptionLocalService>
-
com.liferay.subscription.service.impl.SubscriptionLocalServiceImpl