Liferay 6.2-ce-ga5

com.liferay.portal.service
Class SubscriptionLocalServiceUtil

java.lang.Object
  extended by com.liferay.portal.service.SubscriptionLocalServiceUtil

@ProviderType
public class SubscriptionLocalServiceUtil
extends Object

Provides the local service utility for Subscription. This utility wraps SubscriptionLocalServiceImpl and is the primary access point for service operations in application layer code running on the local server. Methods of this service will not have security checks based on the propagated JAAS credentials because this service can only be accessed from within the same VM.

See Also:
SubscriptionLocalService, SubscriptionLocalServiceBaseImpl, SubscriptionLocalServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Constructor Summary
SubscriptionLocalServiceUtil()
           
 
Method Summary
static 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.
static Subscription 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 addSubscription(Subscription subscription)
          Adds the subscription to the database.
static Subscription createSubscription(long subscriptionId)
          Creates a new subscription with the primary key.
static Subscription deleteSubscription(long subscriptionId)
          Deletes the subscription with the primary key from the database.
static void deleteSubscription(long userId, String className, long classPK)
          Deletes the user's subscription to the entity.
static Subscription deleteSubscription(Subscription subscription)
          Deletes the subscription from the database.
static void deleteSubscriptions(long userId)
          Deletes all the subscriptions of the user.
static void deleteSubscriptions(long companyId, String className, long classPK)
          Deletes all the subscriptions to the entity.
static DynamicQuery dynamicQuery()
           
static List dynamicQuery(DynamicQuery dynamicQuery)
          Performs a dynamic query on the database and returns the matching rows.
static List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
          Performs a dynamic query on the database and returns a range of the matching rows.
static 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.
static long dynamicQueryCount(DynamicQuery dynamicQuery)
          Returns the number of rows that match the dynamic query.
static long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
          Returns the number of rows that match the dynamic query.
static Subscription fetchSubscription(long subscriptionId)
           
static String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
static PersistedModel getPersistedModel(Serializable primaryKeyObj)
           
static SubscriptionLocalService getService()
           
static Subscription getSubscription(long subscriptionId)
          Returns the subscription with the primary key.
static Subscription getSubscription(long companyId, long userId, String className, long classPK)
          Returns the subscription of the user to the entity.
static List<Subscription> getSubscriptions(int start, int end)
          Returns a range of all the subscriptions.
static List<Subscription> getSubscriptions(long companyId, long userId, String className, long[] classPKs)
          Returns all the subscriptions of the user to the entities.
static List<Subscription> getSubscriptions(long companyId, String className, long classPK)
          Returns all the subscriptions to the entity.
static int getSubscriptionsCount()
          Returns the number of subscriptions.
static List<Subscription> getUserSubscriptions(long userId, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the subscriptions of the user.
static List<Subscription> getUserSubscriptions(long userId, String className)
          Returns all the subscriptions of the user to the entities with the class name.
static int getUserSubscriptionsCount(long userId)
          Returns the number of subscriptions of the user.
static boolean isSubscribed(long companyId, long userId, String className, long classPK)
          Returns true if the user is subscribed to the entity.
static boolean isSubscribed(long companyId, long userId, String className, long[] classPKs)
          Returns true if the user is subscribed to any of the entities.
static void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 void setService(SubscriptionLocalService service)
          Deprecated. As of 6.2.0
static Subscription updateSubscription(Subscription subscription)
          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, wait
 

Constructor Detail

SubscriptionLocalServiceUtil

public SubscriptionLocalServiceUtil()
Method Detail

addSubscription

public static Subscription addSubscription(Subscription subscription)
                                    throws SystemException
Adds the subscription to the database. Also notifies the appropriate model listeners.

Parameters:
subscription - the subscription
Returns:
the subscription that was added
Throws:
SystemException - if a system exception occurred

createSubscription

public static Subscription createSubscription(long subscriptionId)
Creates a new subscription with the primary key. Does not add the subscription to the database.

Parameters:
subscriptionId - the primary key for the new subscription
Returns:
the new subscription

deleteSubscription

public static Subscription deleteSubscription(long subscriptionId)
                                       throws PortalException,
                                              SystemException
Deletes the subscription with the primary key from the database. Also notifies the appropriate model listeners.

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 found
SystemException - if a system exception occurred

deleteSubscription

public static Subscription deleteSubscription(Subscription subscription)
                                       throws PortalException,
                                              SystemException
Deletes the subscription from the database. Also notifies the appropriate model listeners.

Parameters:
subscription - the subscription
Returns:
the subscription that was removed
Throws:
PortalException
SystemException - if a system exception occurred

dynamicQuery

public static DynamicQuery dynamicQuery()

dynamicQuery

public static List dynamicQuery(DynamicQuery dynamicQuery)
                         throws SystemException
Performs a dynamic query on the database and returns the matching rows.

Parameters:
dynamicQuery - the dynamic query
Returns:
the matching rows
Throws:
SystemException - if a system exception occurred

dynamicQuery

public static List dynamicQuery(DynamicQuery dynamicQuery,
                                int start,
                                int end)
                         throws SystemException
Performs a dynamic query on the database and returns a range of the matching rows.

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.

Parameters:
dynamicQuery - the dynamic query
start - the lower bound of the range of model instances
end - the upper bound of the range of model instances (not inclusive)
Returns:
the range of matching rows
Throws:
SystemException - if a system exception occurred

dynamicQuery

public static List dynamicQuery(DynamicQuery dynamicQuery,
                                int start,
                                int end,
                                OrderByComparator orderByComparator)
                         throws SystemException
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 - 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.

Parameters:
dynamicQuery - the dynamic query
start - the lower bound of the range of model instances
end - the upper bound of the range of model instances (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching rows
Throws:
SystemException - if a system exception occurred

dynamicQueryCount

public static long dynamicQueryCount(DynamicQuery dynamicQuery)
                              throws SystemException
Returns the number of rows that match the dynamic query.

Parameters:
dynamicQuery - the dynamic query
Returns:
the number of rows that match the dynamic query
Throws:
SystemException - if a system exception occurred

dynamicQueryCount

public static long dynamicQueryCount(DynamicQuery dynamicQuery,
                                     Projection projection)
                              throws SystemException
Returns the number of rows that match the dynamic query.

Parameters:
dynamicQuery - the dynamic query
projection - the projection to apply to the query
Returns:
the number of rows that match the dynamic query
Throws:
SystemException - if a system exception occurred

fetchSubscription

public static Subscription fetchSubscription(long subscriptionId)
                                      throws SystemException
Throws:
SystemException

getSubscription

public static Subscription getSubscription(long subscriptionId)
                                    throws PortalException,
                                           SystemException
Returns the subscription with the primary key.

Parameters:
subscriptionId - the primary key of the subscription
Returns:
the subscription
Throws:
PortalException - if a subscription with the primary key could not be found
SystemException - if a system exception occurred

getPersistedModel

public static PersistedModel getPersistedModel(Serializable primaryKeyObj)
                                        throws PortalException,
                                               SystemException
Throws:
PortalException
SystemException

getSubscriptions

public static List<Subscription> getSubscriptions(int start,
                                                  int end)
                                           throws SystemException
Returns a range of all the subscriptions.

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.

Parameters:
start - the lower bound of the range of subscriptions
end - the upper bound of the range of subscriptions (not inclusive)
Returns:
the range of subscriptions
Throws:
SystemException - if a system exception occurred

getSubscriptionsCount

public static int getSubscriptionsCount()
                                 throws SystemException
Returns the number of subscriptions.

Returns:
the number of subscriptions
Throws:
SystemException - if a system exception occurred

updateSubscription

public static Subscription updateSubscription(Subscription subscription)
                                       throws SystemException
Updates the subscription in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.

Parameters:
subscription - the subscription
Returns:
the subscription that was updated
Throws:
SystemException - if a system exception occurred

getBeanIdentifier

public static String getBeanIdentifier()
Returns the Spring bean ID for this bean.

Returns:
the Spring bean ID for this bean

setBeanIdentifier

public static void setBeanIdentifier(String beanIdentifier)
Sets the Spring bean ID for this bean.

Parameters:
beanIdentifier - the Spring bean ID for this bean

addSubscription

public static Subscription addSubscription(long userId,
                                           long groupId,
                                           String className,
                                           long classPK)
                                    throws PortalException,
                                           SystemException
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.

Parameters:
userId - the primary key of the user
groupId - the primary key of the entity's group
className - the entity's class name
classPK - the primary key of the entity's instance
Returns:
the subscription
Throws:
PortalException - if a matching user or group could not be found
SystemException - if a system exception occurred

addSubscription

public static Subscription addSubscription(long userId,
                                           long groupId,
                                           String className,
                                           long classPK,
                                           String frequency)
                                    throws PortalException,
                                           SystemException
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.

Parameters:
userId - the primary key of the user
groupId - the primary key of the entity's group
className - the entity's class name
classPK - the primary key of the entity's instance
frequency - the frequency for notifications
Returns:
the subscription
Throws:
PortalException - if a matching user or group could not be found
SystemException - if a system exception occurred

deleteSubscription

public static void deleteSubscription(long userId,
                                      String className,
                                      long classPK)
                               throws PortalException,
                                      SystemException
Deletes the user's subscription to the entity. A social activity with the unsubscribe action is created.

Parameters:
userId - the primary key of the user
className - the entity's class name
classPK - the primary key of the entity's instance
Throws:
PortalException - if a matching user or subscription could not be found
SystemException - if a system exception occurred

deleteSubscriptions

public static void deleteSubscriptions(long userId)
                                throws PortalException,
                                       SystemException
Deletes all the subscriptions of the user.

Parameters:
userId - the primary key of the user
Throws:
PortalException - if a portal exception occurred
SystemException - if a system exception occurred

deleteSubscriptions

public static void deleteSubscriptions(long companyId,
                                       String className,
                                       long classPK)
                                throws PortalException,
                                       SystemException
Deletes all the subscriptions to the entity.

Parameters:
companyId - the primary key of the company
className - the entity's class name
classPK - the primary key of the entity's instance
Throws:
PortalException - if a portal exception occurred
SystemException - if a system exception occurred

getSubscription

public static Subscription getSubscription(long companyId,
                                           long userId,
                                           String className,
                                           long classPK)
                                    throws PortalException,
                                           SystemException
Returns the subscription of the user to the entity.

Parameters:
companyId - the primary key of the company
userId - the primary key of the user
className - the entity's class name
classPK - the primary key of the entity's instance
Returns:
the subscription of the user to the entity
Throws:
PortalException - if a matching subscription could not be found
SystemException - if a system exception occurred

getSubscriptions

public static List<Subscription> getSubscriptions(long companyId,
                                                  long userId,
                                                  String className,
                                                  long[] classPKs)
                                           throws SystemException
Returns all the subscriptions of the user to the entities.

Parameters:
companyId - the primary key of the company
userId - the primary key of the user
className - the entity's class name
classPKs - the primary key of the entities
Returns:
the subscriptions of the user to the entities
Throws:
SystemException - if a system exception occurred

getSubscriptions

public static List<Subscription> getSubscriptions(long companyId,
                                                  String className,
                                                  long classPK)
                                           throws SystemException
Returns all the subscriptions to the entity.

Parameters:
companyId - the primary key of the company
className - the entity's class name
classPK - the primary key of the entity's instance
Returns:
the subscriptions to the entity
Throws:
SystemException - if a system exception occurred

getUserSubscriptions

public static List<Subscription> getUserSubscriptions(long userId,
                                                      int start,
                                                      int end,
                                                      OrderByComparator orderByComparator)
                                               throws SystemException
Returns an ordered range of all the subscriptions of the user.

Parameters:
userId - the primary key of the user
start - the lower bound of the range of results
end - 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
Throws:
SystemException - if a system exception occurred

getUserSubscriptions

public static List<Subscription> getUserSubscriptions(long userId,
                                                      String className)
                                               throws SystemException
Returns all the subscriptions of the user to the entities with the class name.

Parameters:
userId - the primary key of the user
className - the entity's class name
Returns:
the subscriptions of the user to the entities with the class name
Throws:
SystemException - if a system exception occurred

getUserSubscriptionsCount

public static int getUserSubscriptionsCount(long userId)
                                     throws SystemException
Returns the number of subscriptions of the user.

Parameters:
userId - the primary key of the user
Returns:
the number of subscriptions of the user
Throws:
SystemException - if a system exception occurred

isSubscribed

public static boolean isSubscribed(long companyId,
                                   long userId,
                                   String className,
                                   long classPK)
                            throws SystemException
Returns true if the user is subscribed to the entity.

Parameters:
companyId - the primary key of the company
userId - the primary key of the user
className - the entity's class name
classPK - the primary key of the entity's instance
Returns:
true if the user is subscribed to the entity; false otherwise
Throws:
SystemException - if a system exception occurred

isSubscribed

public static boolean isSubscribed(long companyId,
                                   long userId,
                                   String className,
                                   long[] classPKs)
                            throws SystemException
Returns true if the user is subscribed to any of the entities.

Parameters:
companyId - the primary key of the company
userId - the primary key of the user
className - the entity's class name
classPKs - the primary key of the entities
Returns:
true if the user is subscribed to any of the entities; false otherwise
Throws:
SystemException - if a system exception occurred

getService

public static SubscriptionLocalService getService()

setService

public void setService(SubscriptionLocalService service)
Deprecated. As of 6.2.0


Liferay 6.2-ce-ga5