Liferay 6.2-ce-ga5

Uses of Interface
com.liferay.portal.model.Subscription

Packages that use Subscription
com.liferay.portal.model This package defines the portal model interfaces, classes, utilities, wrappers, and annotated types. 
com.liferay.portal.service This package defines the portal service interfaces and classes. 
com.liferay.portal.service.persistence This package defines the portal service persistence interfaces, classes, and utilities. 
com.liferay.portal.util This package defines the portal utility interfaces and classes. 
 

Uses of Subscription in com.liferay.portal.model
 

Classes in com.liferay.portal.model that implement Subscription
 class SubscriptionWrapper
           This class is a wrapper for Subscription.
 

Methods in com.liferay.portal.model that return Subscription
 Subscription SubscriptionWrapper.getWrappedModel()
           
 Subscription SubscriptionWrapper.getWrappedSubscription()
          Deprecated. As of 6.1.0, replaced by SubscriptionWrapper.getWrappedModel()
 Subscription SubscriptionWrapper.toEscapedModel()
           
 Subscription SubscriptionModel.toEscapedModel()
           
 Subscription SubscriptionWrapper.toUnescapedModel()
           
 Subscription SubscriptionModel.toUnescapedModel()
           
 

Methods in com.liferay.portal.model that return types with arguments of type Subscription
 CacheModel<Subscription> SubscriptionWrapper.toCacheModel()
           
 CacheModel<Subscription> SubscriptionModel.toCacheModel()
           
 

Methods in com.liferay.portal.model with parameters of type Subscription
 int SubscriptionWrapper.compareTo(Subscription subscription)
           
 int SubscriptionModel.compareTo(Subscription subscription)
           
static SubscriptionSoap SubscriptionSoap.toSoapModel(Subscription model)
           
static SubscriptionSoap[] SubscriptionSoap.toSoapModels(Subscription[] models)
           
static SubscriptionSoap[][] SubscriptionSoap.toSoapModels(Subscription[][] models)
           
 

Method parameters in com.liferay.portal.model with type arguments of type Subscription
static SubscriptionSoap[] SubscriptionSoap.toSoapModels(List<Subscription> models)
           
 

Constructors in com.liferay.portal.model with parameters of type Subscription
SubscriptionWrapper(Subscription subscription)
           
 

Uses of Subscription in com.liferay.portal.service
 

Methods in com.liferay.portal.service that return Subscription
 Subscription SubscriptionLocalServiceWrapper.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.
static Subscription SubscriptionLocalServiceUtil.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 SubscriptionLocalService.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 SubscriptionLocalServiceWrapper.addSubscription(long userId, long groupId, String className, long classPK, String frequency)
          Subscribes the user to the entity, notifying him at the given frequency.
static Subscription SubscriptionLocalServiceUtil.addSubscription(long userId, long groupId, String className, long classPK, String frequency)
          Subscribes the user to the entity, notifying him at the given frequency.
 Subscription SubscriptionLocalService.addSubscription(long userId, long groupId, String className, long classPK, String frequency)
          Subscribes the user to the entity, notifying him at the given frequency.
 Subscription SubscriptionLocalServiceWrapper.addSubscription(Subscription subscription)
          Adds the subscription to the database.
static Subscription SubscriptionLocalServiceUtil.addSubscription(Subscription subscription)
          Adds the subscription to the database.
 Subscription SubscriptionLocalService.addSubscription(Subscription subscription)
          Adds the subscription to the database.
 Subscription SubscriptionLocalServiceWrapper.createSubscription(long subscriptionId)
          Creates a new subscription with the primary key.
static Subscription SubscriptionLocalServiceUtil.createSubscription(long subscriptionId)
          Creates a new subscription with the primary key.
 Subscription SubscriptionLocalService.createSubscription(long subscriptionId)
          Creates a new subscription with the primary key.
 Subscription SubscriptionLocalServiceWrapper.deleteSubscription(long subscriptionId)
          Deletes the subscription with the primary key from the database.
static Subscription SubscriptionLocalServiceUtil.deleteSubscription(long subscriptionId)
          Deletes the subscription with the primary key from the database.
 Subscription SubscriptionLocalService.deleteSubscription(long subscriptionId)
          Deletes the subscription with the primary key from the database.
 Subscription SubscriptionLocalServiceWrapper.deleteSubscription(Subscription subscription)
          Deletes the subscription from the database.
static Subscription SubscriptionLocalServiceUtil.deleteSubscription(Subscription subscription)
          Deletes the subscription from the database.
 Subscription SubscriptionLocalService.deleteSubscription(Subscription subscription)
          Deletes the subscription from the database.
 Subscription SubscriptionLocalServiceWrapper.fetchSubscription(long subscriptionId)
           
static Subscription SubscriptionLocalServiceUtil.fetchSubscription(long subscriptionId)
           
 Subscription SubscriptionLocalService.fetchSubscription(long subscriptionId)
           
 Subscription SubscriptionLocalServiceWrapper.getSubscription(long subscriptionId)
          Returns the subscription with the primary key.
static Subscription SubscriptionLocalServiceUtil.getSubscription(long subscriptionId)
          Returns the subscription with the primary key.
 Subscription SubscriptionLocalService.getSubscription(long subscriptionId)
          Returns the subscription with the primary key.
 Subscription SubscriptionLocalServiceWrapper.getSubscription(long companyId, long userId, String className, long classPK)
          Returns the subscription of the user to the entity.
static Subscription SubscriptionLocalServiceUtil.getSubscription(long companyId, long userId, String className, long classPK)
          Returns the subscription of the user to the entity.
 Subscription SubscriptionLocalService.getSubscription(long companyId, long userId, String className, long classPK)
          Returns the subscription of the user to the entity.
 Subscription SubscriptionLocalServiceWrapper.updateSubscription(Subscription subscription)
          Updates the subscription in the database or adds it if it does not yet exist.
static Subscription SubscriptionLocalServiceUtil.updateSubscription(Subscription subscription)
          Updates the subscription in the database or adds it if it does not yet exist.
 Subscription SubscriptionLocalService.updateSubscription(Subscription subscription)
          Updates the subscription in the database or adds it if it does not yet exist.
 

Methods in com.liferay.portal.service that return types with arguments of type Subscription
 List<Subscription> SubscriptionLocalServiceWrapper.getSubscriptions(int start, int end)
          Returns a range of all the subscriptions.
static List<Subscription> SubscriptionLocalServiceUtil.getSubscriptions(int start, int end)
          Returns a range of all the subscriptions.
 List<Subscription> SubscriptionLocalService.getSubscriptions(int start, int end)
          Returns a range of all the subscriptions.
 List<Subscription> SubscriptionLocalServiceWrapper.getSubscriptions(long companyId, long userId, String className, long[] classPKs)
          Returns all the subscriptions of the user to the entities.
static List<Subscription> SubscriptionLocalServiceUtil.getSubscriptions(long companyId, long userId, String className, long[] classPKs)
          Returns all the subscriptions of the user to the entities.
 List<Subscription> SubscriptionLocalService.getSubscriptions(long companyId, long userId, String className, long[] classPKs)
          Returns all the subscriptions of the user to the entities.
 List<Subscription> SubscriptionLocalServiceWrapper.getSubscriptions(long companyId, String className, long classPK)
          Returns all the subscriptions to the entity.
static List<Subscription> SubscriptionLocalServiceUtil.getSubscriptions(long companyId, String className, long classPK)
          Returns all the subscriptions to the entity.
 List<Subscription> SubscriptionLocalService.getSubscriptions(long companyId, String className, long classPK)
          Returns all the subscriptions to the entity.
 List<Subscription> SubscriptionLocalServiceWrapper.getUserSubscriptions(long userId, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the subscriptions of the user.
static List<Subscription> SubscriptionLocalServiceUtil.getUserSubscriptions(long userId, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the subscriptions of the user.
 List<Subscription> SubscriptionLocalService.getUserSubscriptions(long userId, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the subscriptions of the user.
 List<Subscription> SubscriptionLocalServiceWrapper.getUserSubscriptions(long userId, String className)
          Returns all the subscriptions of the user to the entities with the class name.
static List<Subscription> SubscriptionLocalServiceUtil.getUserSubscriptions(long userId, String className)
          Returns all the subscriptions of the user to the entities with the class name.
 List<Subscription> SubscriptionLocalService.getUserSubscriptions(long userId, String className)
          Returns all the subscriptions of the user to the entities with the class name.
 

Methods in com.liferay.portal.service with parameters of type Subscription
 Subscription SubscriptionLocalServiceWrapper.addSubscription(Subscription subscription)
          Adds the subscription to the database.
static Subscription SubscriptionLocalServiceUtil.addSubscription(Subscription subscription)
          Adds the subscription to the database.
 Subscription SubscriptionLocalService.addSubscription(Subscription subscription)
          Adds the subscription to the database.
 Subscription SubscriptionLocalServiceWrapper.deleteSubscription(Subscription subscription)
          Deletes the subscription from the database.
static Subscription SubscriptionLocalServiceUtil.deleteSubscription(Subscription subscription)
          Deletes the subscription from the database.
 Subscription SubscriptionLocalService.deleteSubscription(Subscription subscription)
          Deletes the subscription from the database.
 Subscription SubscriptionLocalServiceWrapper.updateSubscription(Subscription subscription)
          Updates the subscription in the database or adds it if it does not yet exist.
static Subscription SubscriptionLocalServiceUtil.updateSubscription(Subscription subscription)
          Updates the subscription in the database or adds it if it does not yet exist.
 Subscription SubscriptionLocalService.updateSubscription(Subscription subscription)
          Updates the subscription in the database or adds it if it does not yet exist.
 

Uses of Subscription in com.liferay.portal.service.persistence
 

Methods in com.liferay.portal.service.persistence that return Subscription
static Subscription SubscriptionUtil.create(long subscriptionId)
          Creates a new subscription with the primary key.
 Subscription SubscriptionPersistence.create(long subscriptionId)
          Creates a new subscription with the primary key.
static Subscription SubscriptionUtil.fetchByC_C_C_First(long companyId, long classNameId, long classPK, OrderByComparator orderByComparator)
          Returns the first subscription in the ordered set where companyId = ? and classNameId = ? and classPK = ?.
 Subscription SubscriptionPersistence.fetchByC_C_C_First(long companyId, long classNameId, long classPK, OrderByComparator orderByComparator)
          Returns the first subscription in the ordered set where companyId = ? and classNameId = ? and classPK = ?.
static Subscription SubscriptionUtil.fetchByC_C_C_Last(long companyId, long classNameId, long classPK, OrderByComparator orderByComparator)
          Returns the last subscription in the ordered set where companyId = ? and classNameId = ? and classPK = ?.
 Subscription SubscriptionPersistence.fetchByC_C_C_Last(long companyId, long classNameId, long classPK, OrderByComparator orderByComparator)
          Returns the last subscription in the ordered set where companyId = ? and classNameId = ? and classPK = ?.
static Subscription SubscriptionUtil.fetchByC_U_C_C(long companyId, long userId, long classNameId, long classPK)
          Returns the subscription where companyId = ? and userId = ? and classNameId = ? and classPK = ? or returns null if it could not be found.
 Subscription SubscriptionPersistence.fetchByC_U_C_C(long companyId, long userId, long classNameId, long classPK)
          Returns the subscription where companyId = ? and userId = ? and classNameId = ? and classPK = ? or returns null if it could not be found.
static Subscription SubscriptionUtil.fetchByC_U_C_C(long companyId, long userId, long classNameId, long classPK, boolean retrieveFromCache)
          Returns the subscription where companyId = ? and userId = ? and classNameId = ? and classPK = ? or returns null if it could not be found, optionally using the finder cache.
 Subscription SubscriptionPersistence.fetchByC_U_C_C(long companyId, long userId, long classNameId, long classPK, boolean retrieveFromCache)
          Returns the subscription where companyId = ? and userId = ? and classNameId = ? and classPK = ? or returns null if it could not be found, optionally using the finder cache.
static Subscription SubscriptionUtil.fetchByPrimaryKey(long subscriptionId)
          Returns the subscription with the primary key or returns null if it could not be found.
 Subscription SubscriptionPersistence.fetchByPrimaryKey(long subscriptionId)
          Returns the subscription with the primary key or returns null if it could not be found.
static Subscription SubscriptionUtil.fetchByU_C_First(long userId, long classNameId, OrderByComparator orderByComparator)
          Returns the first subscription in the ordered set where userId = ? and classNameId = ?.
 Subscription SubscriptionPersistence.fetchByU_C_First(long userId, long classNameId, OrderByComparator orderByComparator)
          Returns the first subscription in the ordered set where userId = ? and classNameId = ?.
static Subscription SubscriptionUtil.fetchByU_C_Last(long userId, long classNameId, OrderByComparator orderByComparator)
          Returns the last subscription in the ordered set where userId = ? and classNameId = ?.
 Subscription SubscriptionPersistence.fetchByU_C_Last(long userId, long classNameId, OrderByComparator orderByComparator)
          Returns the last subscription in the ordered set where userId = ? and classNameId = ?.
static Subscription SubscriptionUtil.fetchByUserId_First(long userId, OrderByComparator orderByComparator)
          Returns the first subscription in the ordered set where userId = ?.
 Subscription SubscriptionPersistence.fetchByUserId_First(long userId, OrderByComparator orderByComparator)
          Returns the first subscription in the ordered set where userId = ?.
static Subscription SubscriptionUtil.fetchByUserId_Last(long userId, OrderByComparator orderByComparator)
          Returns the last subscription in the ordered set where userId = ?.
 Subscription SubscriptionPersistence.fetchByUserId_Last(long userId, OrderByComparator orderByComparator)
          Returns the last subscription in the ordered set where userId = ?.
static Subscription SubscriptionUtil.findByC_C_C_First(long companyId, long classNameId, long classPK, OrderByComparator orderByComparator)
          Returns the first subscription in the ordered set where companyId = ? and classNameId = ? and classPK = ?.
 Subscription SubscriptionPersistence.findByC_C_C_First(long companyId, long classNameId, long classPK, OrderByComparator orderByComparator)
          Returns the first subscription in the ordered set where companyId = ? and classNameId = ? and classPK = ?.
static Subscription SubscriptionUtil.findByC_C_C_Last(long companyId, long classNameId, long classPK, OrderByComparator orderByComparator)
          Returns the last subscription in the ordered set where companyId = ? and classNameId = ? and classPK = ?.
 Subscription SubscriptionPersistence.findByC_C_C_Last(long companyId, long classNameId, long classPK, OrderByComparator orderByComparator)
          Returns the last subscription in the ordered set where companyId = ? and classNameId = ? and classPK = ?.
static Subscription[] SubscriptionUtil.findByC_C_C_PrevAndNext(long subscriptionId, long companyId, long classNameId, long classPK, OrderByComparator orderByComparator)
          Returns the subscriptions before and after the current subscription in the ordered set where companyId = ? and classNameId = ? and classPK = ?.
 Subscription[] SubscriptionPersistence.findByC_C_C_PrevAndNext(long subscriptionId, long companyId, long classNameId, long classPK, OrderByComparator orderByComparator)
          Returns the subscriptions before and after the current subscription in the ordered set where companyId = ? and classNameId = ? and classPK = ?.
static Subscription SubscriptionUtil.findByC_U_C_C(long companyId, long userId, long classNameId, long classPK)
          Returns the subscription where companyId = ? and userId = ? and classNameId = ? and classPK = ? or throws a NoSuchSubscriptionException if it could not be found.
 Subscription SubscriptionPersistence.findByC_U_C_C(long companyId, long userId, long classNameId, long classPK)
          Returns the subscription where companyId = ? and userId = ? and classNameId = ? and classPK = ? or throws a NoSuchSubscriptionException if it could not be found.
static Subscription SubscriptionUtil.findByPrimaryKey(long subscriptionId)
          Returns the subscription with the primary key or throws a NoSuchSubscriptionException if it could not be found.
 Subscription SubscriptionPersistence.findByPrimaryKey(long subscriptionId)
          Returns the subscription with the primary key or throws a NoSuchSubscriptionException if it could not be found.
static Subscription SubscriptionUtil.findByU_C_First(long userId, long classNameId, OrderByComparator orderByComparator)
          Returns the first subscription in the ordered set where userId = ? and classNameId = ?.
 Subscription SubscriptionPersistence.findByU_C_First(long userId, long classNameId, OrderByComparator orderByComparator)
          Returns the first subscription in the ordered set where userId = ? and classNameId = ?.
static Subscription SubscriptionUtil.findByU_C_Last(long userId, long classNameId, OrderByComparator orderByComparator)
          Returns the last subscription in the ordered set where userId = ? and classNameId = ?.
 Subscription SubscriptionPersistence.findByU_C_Last(long userId, long classNameId, OrderByComparator orderByComparator)
          Returns the last subscription in the ordered set where userId = ? and classNameId = ?.
static Subscription[] SubscriptionUtil.findByU_C_PrevAndNext(long subscriptionId, long userId, long classNameId, OrderByComparator orderByComparator)
          Returns the subscriptions before and after the current subscription in the ordered set where userId = ? and classNameId = ?.
 Subscription[] SubscriptionPersistence.findByU_C_PrevAndNext(long subscriptionId, long userId, long classNameId, OrderByComparator orderByComparator)
          Returns the subscriptions before and after the current subscription in the ordered set where userId = ? and classNameId = ?.
static Subscription SubscriptionUtil.findByUserId_First(long userId, OrderByComparator orderByComparator)
          Returns the first subscription in the ordered set where userId = ?.
 Subscription SubscriptionPersistence.findByUserId_First(long userId, OrderByComparator orderByComparator)
          Returns the first subscription in the ordered set where userId = ?.
static Subscription SubscriptionUtil.findByUserId_Last(long userId, OrderByComparator orderByComparator)
          Returns the last subscription in the ordered set where userId = ?.
 Subscription SubscriptionPersistence.findByUserId_Last(long userId, OrderByComparator orderByComparator)
          Returns the last subscription in the ordered set where userId = ?.
static Subscription[] SubscriptionUtil.findByUserId_PrevAndNext(long subscriptionId, long userId, OrderByComparator orderByComparator)
          Returns the subscriptions before and after the current subscription in the ordered set where userId = ?.
 Subscription[] SubscriptionPersistence.findByUserId_PrevAndNext(long subscriptionId, long userId, OrderByComparator orderByComparator)
          Returns the subscriptions before and after the current subscription in the ordered set where userId = ?.
static Subscription SubscriptionUtil.remove(long subscriptionId)
          Removes the subscription with the primary key from the database.
 Subscription SubscriptionPersistence.remove(long subscriptionId)
          Removes the subscription with the primary key from the database.
static Subscription SubscriptionUtil.removeByC_U_C_C(long companyId, long userId, long classNameId, long classPK)
          Removes the subscription where companyId = ? and userId = ? and classNameId = ? and classPK = ? from the database.
 Subscription SubscriptionPersistence.removeByC_U_C_C(long companyId, long userId, long classNameId, long classPK)
          Removes the subscription where companyId = ? and userId = ? and classNameId = ? and classPK = ? from the database.
static Subscription SubscriptionUtil.update(Subscription subscription)
           
static Subscription SubscriptionUtil.update(Subscription subscription, ServiceContext serviceContext)
           
static Subscription SubscriptionUtil.updateImpl(Subscription subscription)
           
 Subscription SubscriptionPersistence.updateImpl(Subscription subscription)
           
 

Methods in com.liferay.portal.service.persistence that return types with arguments of type Subscription
static List<Subscription> SubscriptionUtil.findAll()
          Returns all the subscriptions.
 List<Subscription> SubscriptionPersistence.findAll()
          Returns all the subscriptions.
static List<Subscription> SubscriptionUtil.findAll(int start, int end)
          Returns a range of all the subscriptions.
 List<Subscription> SubscriptionPersistence.findAll(int start, int end)
          Returns a range of all the subscriptions.
static List<Subscription> SubscriptionUtil.findAll(int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the subscriptions.
 List<Subscription> SubscriptionPersistence.findAll(int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the subscriptions.
static List<Subscription> SubscriptionUtil.findByC_C_C(long companyId, long classNameId, long classPK)
          Returns all the subscriptions where companyId = ? and classNameId = ? and classPK = ?.
 List<Subscription> SubscriptionPersistence.findByC_C_C(long companyId, long classNameId, long classPK)
          Returns all the subscriptions where companyId = ? and classNameId = ? and classPK = ?.
static List<Subscription> SubscriptionUtil.findByC_C_C(long companyId, long classNameId, long classPK, int start, int end)
          Returns a range of all the subscriptions where companyId = ? and classNameId = ? and classPK = ?.
 List<Subscription> SubscriptionPersistence.findByC_C_C(long companyId, long classNameId, long classPK, int start, int end)
          Returns a range of all the subscriptions where companyId = ? and classNameId = ? and classPK = ?.
static List<Subscription> SubscriptionUtil.findByC_C_C(long companyId, long classNameId, long classPK, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the subscriptions where companyId = ? and classNameId = ? and classPK = ?.
 List<Subscription> SubscriptionPersistence.findByC_C_C(long companyId, long classNameId, long classPK, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the subscriptions where companyId = ? and classNameId = ? and classPK = ?.
static List<Subscription> SubscriptionUtil.findByC_U_C_C(long companyId, long userId, long classNameId, long[] classPKs)
          Returns all the subscriptions where companyId = ? and userId = ? and classNameId = ? and classPK = any ?.
 List<Subscription> SubscriptionPersistence.findByC_U_C_C(long companyId, long userId, long classNameId, long[] classPKs)
          Returns all the subscriptions where companyId = ? and userId = ? and classNameId = ? and classPK = any ?.
static List<Subscription> SubscriptionUtil.findByC_U_C_C(long companyId, long userId, long classNameId, long[] classPKs, int start, int end)
          Returns a range of all the subscriptions where companyId = ? and userId = ? and classNameId = ? and classPK = any ?.
 List<Subscription> SubscriptionPersistence.findByC_U_C_C(long companyId, long userId, long classNameId, long[] classPKs, int start, int end)
          Returns a range of all the subscriptions where companyId = ? and userId = ? and classNameId = ? and classPK = any ?.
static List<Subscription> SubscriptionUtil.findByC_U_C_C(long companyId, long userId, long classNameId, long[] classPKs, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the subscriptions where companyId = ? and userId = ? and classNameId = ? and classPK = any ?.
 List<Subscription> SubscriptionPersistence.findByC_U_C_C(long companyId, long userId, long classNameId, long[] classPKs, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the subscriptions where companyId = ? and userId = ? and classNameId = ? and classPK = any ?.
static List<Subscription> SubscriptionUtil.findByU_C(long userId, long classNameId)
          Returns all the subscriptions where userId = ? and classNameId = ?.
 List<Subscription> SubscriptionPersistence.findByU_C(long userId, long classNameId)
          Returns all the subscriptions where userId = ? and classNameId = ?.
static List<Subscription> SubscriptionUtil.findByU_C(long userId, long classNameId, int start, int end)
          Returns a range of all the subscriptions where userId = ? and classNameId = ?.
 List<Subscription> SubscriptionPersistence.findByU_C(long userId, long classNameId, int start, int end)
          Returns a range of all the subscriptions where userId = ? and classNameId = ?.
static List<Subscription> SubscriptionUtil.findByU_C(long userId, long classNameId, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the subscriptions where userId = ? and classNameId = ?.
 List<Subscription> SubscriptionPersistence.findByU_C(long userId, long classNameId, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the subscriptions where userId = ? and classNameId = ?.
static List<Subscription> SubscriptionUtil.findByUserId(long userId)
          Returns all the subscriptions where userId = ?.
 List<Subscription> SubscriptionPersistence.findByUserId(long userId)
          Returns all the subscriptions where userId = ?.
static List<Subscription> SubscriptionUtil.findByUserId(long userId, int start, int end)
          Returns a range of all the subscriptions where userId = ?.
 List<Subscription> SubscriptionPersistence.findByUserId(long userId, int start, int end)
          Returns a range of all the subscriptions where userId = ?.
static List<Subscription> SubscriptionUtil.findByUserId(long userId, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the subscriptions where userId = ?.
 List<Subscription> SubscriptionPersistence.findByUserId(long userId, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the subscriptions where userId = ?.
static List<Subscription> SubscriptionUtil.findWithDynamicQuery(DynamicQuery dynamicQuery)
           
static List<Subscription> SubscriptionUtil.findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
           
static List<Subscription> SubscriptionUtil.findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
           
 

Methods in com.liferay.portal.service.persistence with parameters of type Subscription
static void SubscriptionUtil.cacheResult(Subscription subscription)
          Caches the subscription in the entity cache if it is enabled.
 void SubscriptionPersistence.cacheResult(Subscription subscription)
          Caches the subscription in the entity cache if it is enabled.
static void SubscriptionUtil.clearCache(Subscription subscription)
           
static Subscription SubscriptionUtil.update(Subscription subscription)
           
static Subscription SubscriptionUtil.update(Subscription subscription, ServiceContext serviceContext)
           
static Subscription SubscriptionUtil.updateImpl(Subscription subscription)
           
 Subscription SubscriptionPersistence.updateImpl(Subscription subscription)
           
 

Method parameters in com.liferay.portal.service.persistence with type arguments of type Subscription
static void SubscriptionUtil.cacheResult(List<Subscription> subscriptions)
          Caches the subscriptions in the entity cache if it is enabled.
 void SubscriptionPersistence.cacheResult(List<Subscription> subscriptions)
          Caches the subscriptions in the entity cache if it is enabled.
 

Uses of Subscription in com.liferay.portal.util
 

Methods in com.liferay.portal.util with parameters of type Subscription
protected  void SubscriptionSender.deleteSubscription(Subscription subscription)
           
protected  boolean SubscriptionSender.hasPermission(Subscription subscription, String inferredClassName, long inferredClassPK, User user)
           
protected  boolean SubscriptionSender.hasPermission(Subscription subscription, User user)
          Deprecated. As of 6.2.0, replaced by SubscriptionSender.hasPermission(Subscription, String, long, User)
protected  void SubscriptionSender.notifySubscriber(Subscription subscription)
          Deprecated. As of 6.2.0, replaced by SubscriptionSender.notifySubscriber(Subscription, String, long)
protected  void SubscriptionSender.notifySubscriber(Subscription subscription, String inferredClassName, long inferredClassPK)
           
 


Liferay 6.2-ce-ga5