Liferay 6.0.5

com.liferay.portal.service
Interface SubscriptionLocalService

All Known Implementing Classes:
SubscriptionLocalServiceBaseImpl, SubscriptionLocalServiceImpl, SubscriptionLocalServiceWrapper

@Transactional(isolation=PORTAL,
               rollbackFor={PortalException.class,SystemException.class})
public interface SubscriptionLocalService

The interface for the subscription local service.

Never modify or reference this interface directly. Always use SubscriptionLocalServiceUtil to access the subscription local service. Add custom service methods to SubscriptionLocalServiceImpl and rerun ServiceBuilder to automatically copy the method declarations to this interface.

This is a local service. 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:
SubscriptionLocalServiceUtil, SubscriptionLocalServiceBaseImpl, SubscriptionLocalServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

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)
           
 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.
 

Method Detail

addSubscription

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

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

createSubscription

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

void 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 to delete
Throws:
PortalException - if a subscription with the primary key could not be found
SystemException - if a system exception occurred

deleteSubscription

void deleteSubscription(Subscription subscription)
                        throws SystemException
Deletes the subscription from the database. Also notifies the appropriate model listeners.

Parameters:
subscription - the subscription to delete
Throws:
SystemException - if a system exception occurred

dynamicQuery

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

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

dynamicQuery

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.

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

dynamicQuery

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.

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

dynamicQueryCount

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

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

getSubscription

@Transactional(propagation=SUPPORTS,
               readOnly=true)
Subscription getSubscription(long subscriptionId)
                             throws PortalException,
                                    SystemException
Gets the subscription with the primary key.

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

getSubscriptions

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<Subscription> getSubscriptions(int start,
                                                                             int end)
                                    throws SystemException
Gets 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.

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

getSubscriptionsCount

@Transactional(propagation=SUPPORTS,
               readOnly=true)
int getSubscriptionsCount()
                          throws SystemException
Gets the number of subscriptions.

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

updateSubscription

Subscription updateSubscription(Subscription subscription)
                                throws SystemException
Updates the subscription in the database. Also notifies the appropriate model listeners.

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

updateSubscription

Subscription updateSubscription(Subscription subscription,
                                boolean merge)
                                throws SystemException
Updates the subscription in the database. Also notifies the appropriate model listeners.

Parameters:
subscription - the subscription to update
merge - 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.
Returns:
the subscription that was updated
Throws:
SystemException - if a system exception occurred

addSubscription

Subscription addSubscription(long userId,
                             String className,
                             long classPK)
                             throws PortalException,
                                    SystemException
Throws:
PortalException
SystemException

addSubscription

Subscription addSubscription(long userId,
                             String className,
                             long classPK,
                             String frequency)
                             throws PortalException,
                                    SystemException
Throws:
PortalException
SystemException

deleteSubscription

void deleteSubscription(long userId,
                        String className,
                        long classPK)
                        throws PortalException,
                               SystemException
Throws:
PortalException
SystemException

deleteSubscriptions

void deleteSubscriptions(long userId)
                         throws SystemException
Throws:
SystemException

deleteSubscriptions

void deleteSubscriptions(long companyId,
                         String className,
                         long classPK)
                         throws SystemException
Throws:
SystemException

getSubscription

@Transactional(propagation=SUPPORTS,
               readOnly=true)
Subscription getSubscription(long companyId,
                                                                      long userId,
                                                                      String className,
                                                                      long classPK)
                             throws PortalException,
                                    SystemException
Throws:
PortalException
SystemException

getSubscriptions

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<Subscription> getSubscriptions(long companyId,
                                                                             String className,
                                                                             long classPK)
                                    throws SystemException
Throws:
SystemException

getUserSubscriptions

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<Subscription> getUserSubscriptions(long userId,
                                                                                 String className)
                                        throws SystemException
Throws:
SystemException

isSubscribed

@Transactional(propagation=SUPPORTS,
               readOnly=true)
boolean isSubscribed(long companyId,
                                                              long userId,
                                                              String className,
                                                              long classPK)
                     throws SystemException
Throws:
SystemException

Liferay 6.0.5