|
Liferay 6.0.5 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.liferay.portal.service.SubscriptionLocalServiceWrapper
public class SubscriptionLocalServiceWrapper
This class is a wrapper for SubscriptionLocalService.
SubscriptionLocalService| Constructor Summary | |
|---|---|
SubscriptionLocalServiceWrapper(SubscriptionLocalService subscriptionLocalService)
|
|
| Method Summary | |
|---|---|
Subscription |
addSubscription(long userId,
String className,
long classPK)
|
Subscription |
addSubscription(long userId,
String className,
long classPK,
String frequency)
|
Subscription |
addSubscription(Subscription subscription)
Adds the subscription to the database. |
Subscription |
createSubscription(long subscriptionId)
Creates a new subscription with the primary key. |
void |
deleteSubscription(long subscriptionId)
Deletes the subscription with the primary key from the database. |
void |
deleteSubscription(long userId,
String className,
long classPK)
|
void |
deleteSubscription(Subscription subscription)
Deletes the subscription from the database. |
void |
deleteSubscriptions(long userId)
|
void |
deleteSubscriptions(long companyId,
String className,
long classPK)
|
List |
dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows. |
List |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
Performs a dynamic query on the database and returns a range of the matching rows. |
List |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator)
Performs a dynamic query on the database and returns an ordered range of the matching rows. |
long |
dynamicQueryCount(DynamicQuery dynamicQuery)
Counts the number of rows that match the dynamic query. |
Subscription |
getSubscription(long subscriptionId)
Gets the subscription with the primary key. |
Subscription |
getSubscription(long companyId,
long userId,
String className,
long classPK)
|
List<Subscription> |
getSubscriptions(int start,
int end)
Gets a range of all the subscriptions. |
List<Subscription> |
getSubscriptions(long companyId,
String className,
long classPK)
|
int |
getSubscriptionsCount()
Gets the number of subscriptions. |
List<Subscription> |
getUserSubscriptions(long userId,
String className)
|
SubscriptionLocalService |
getWrappedSubscriptionLocalService()
|
boolean |
isSubscribed(long companyId,
long userId,
String className,
long classPK)
|
Subscription |
updateSubscription(Subscription subscription)
Updates the subscription in the database. |
Subscription |
updateSubscription(Subscription subscription,
boolean merge)
Updates the subscription in the database. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public SubscriptionLocalServiceWrapper(SubscriptionLocalService subscriptionLocalService)
| Method Detail |
|---|
public Subscription addSubscription(Subscription subscription)
throws SystemException
addSubscription in interface SubscriptionLocalServicesubscription - the subscription to add
SystemException - if a system exception occurredpublic Subscription createSubscription(long subscriptionId)
createSubscription in interface SubscriptionLocalServicesubscriptionId - the primary key for the new subscription
public void deleteSubscription(long subscriptionId)
throws PortalException,
SystemException
deleteSubscription in interface SubscriptionLocalServicesubscriptionId - the primary key of the subscription to delete
PortalException - if a subscription with the primary key could not be found
SystemException - if a system exception occurred
public void deleteSubscription(Subscription subscription)
throws SystemException
deleteSubscription in interface SubscriptionLocalServicesubscription - the subscription to delete
SystemException - if a system exception occurred
public List dynamicQuery(DynamicQuery dynamicQuery)
throws SystemException
dynamicQuery in interface SubscriptionLocalServicedynamicQuery - the dynamic query to search with
SystemException - if a system exception occurred
public List dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
throws SystemException
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.
dynamicQuery in interface SubscriptionLocalServicedynamicQuery - the dynamic query to search withstart - the lower bound of the range of model instances to returnend - the upper bound of the range of model instances to return (not inclusive)
SystemException - if a system exception occurred
public List dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
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.
dynamicQuery in interface SubscriptionLocalServicedynamicQuery - the dynamic query to search withstart - the lower bound of the range of model instances to returnend - the upper bound of the range of model instances to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
public long dynamicQueryCount(DynamicQuery dynamicQuery)
throws SystemException
dynamicQueryCount in interface SubscriptionLocalServicedynamicQuery - the dynamic query to search with
SystemException - if a system exception occurred
public Subscription getSubscription(long subscriptionId)
throws PortalException,
SystemException
getSubscription in interface SubscriptionLocalServicesubscriptionId - the primary key of the subscription to get
PortalException - if a subscription with the primary key could not be found
SystemException - if a system exception occurred
public List<Subscription> getSubscriptions(int start,
int end)
throws SystemException
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.
getSubscriptions in interface SubscriptionLocalServicestart - the lower bound of the range of subscriptions to returnend - the upper bound of the range of subscriptions to return (not inclusive)
SystemException - if a system exception occurred
public int getSubscriptionsCount()
throws SystemException
getSubscriptionsCount in interface SubscriptionLocalServiceSystemException - if a system exception occurred
public Subscription updateSubscription(Subscription subscription)
throws SystemException
updateSubscription in interface SubscriptionLocalServicesubscription - the subscription to update
SystemException - if a system exception occurred
public Subscription updateSubscription(Subscription subscription,
boolean merge)
throws SystemException
updateSubscription in interface SubscriptionLocalServicesubscription - the subscription to updatemerge - whether to merge the subscription with the current session. See BatchSession.update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean) for an explanation.
SystemException - if a system exception occurred
public Subscription addSubscription(long userId,
String className,
long classPK)
throws PortalException,
SystemException
addSubscription in interface SubscriptionLocalServicePortalException
SystemException
public Subscription addSubscription(long userId,
String className,
long classPK,
String frequency)
throws PortalException,
SystemException
addSubscription in interface SubscriptionLocalServicePortalException
SystemException
public void deleteSubscription(long userId,
String className,
long classPK)
throws PortalException,
SystemException
deleteSubscription in interface SubscriptionLocalServicePortalException
SystemException
public void deleteSubscriptions(long userId)
throws SystemException
deleteSubscriptions in interface SubscriptionLocalServiceSystemException
public void deleteSubscriptions(long companyId,
String className,
long classPK)
throws SystemException
deleteSubscriptions in interface SubscriptionLocalServiceSystemException
public Subscription getSubscription(long companyId,
long userId,
String className,
long classPK)
throws PortalException,
SystemException
getSubscription in interface SubscriptionLocalServicePortalException
SystemException
public List<Subscription> getSubscriptions(long companyId,
String className,
long classPK)
throws SystemException
getSubscriptions in interface SubscriptionLocalServiceSystemException
public List<Subscription> getUserSubscriptions(long userId,
String className)
throws SystemException
getUserSubscriptions in interface SubscriptionLocalServiceSystemException
public boolean isSubscribed(long companyId,
long userId,
String className,
long classPK)
throws SystemException
isSubscribed in interface SubscriptionLocalServiceSystemExceptionpublic SubscriptionLocalService getWrappedSubscriptionLocalService()
|
Liferay 6.0.5 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||