Liferay 6.1.2-ce-ga3

com.liferay.portlet.dynamicdatalists.service
Class DDLRecordSetLocalServiceUtil

java.lang.Object
  extended by com.liferay.portlet.dynamicdatalists.service.DDLRecordSetLocalServiceUtil

public class DDLRecordSetLocalServiceUtil
extends Object

The utility for the d d l record set local service. This utility wraps com.liferay.portlet.dynamicdatalists.service.impl.DDLRecordSetLocalServiceImpl and is the primary access point for service operations in application layer code running on the local server.

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:
DDLRecordSetLocalService, com.liferay.portlet.dynamicdatalists.service.base.DDLRecordSetLocalServiceBaseImpl, com.liferay.portlet.dynamicdatalists.service.impl.DDLRecordSetLocalServiceImpl

Constructor Summary
DDLRecordSetLocalServiceUtil()
           
 
Method Summary
static DDLRecordSet addDDLRecordSet(DDLRecordSet ddlRecordSet)
          Adds the d d l record set to the database.
static DDLRecordSet addRecordSet(long userId, long groupId, long ddmStructureId, String recordSetKey, Map<Locale,String> nameMap, Map<Locale,String> descriptionMap, int minDisplayRows, int scope, ServiceContext serviceContext)
           
static void addRecordSetResources(DDLRecordSet recordSet, boolean addGroupPermissions, boolean addGuestPermissions)
           
static void addRecordSetResources(DDLRecordSet recordSet, String[] groupPermissions, String[] guestPermissions)
           
static DDLRecordSet createDDLRecordSet(long recordSetId)
          Creates a new d d l record set with the primary key.
static DDLRecordSet deleteDDLRecordSet(DDLRecordSet ddlRecordSet)
          Deletes the d d l record set from the database.
static DDLRecordSet deleteDDLRecordSet(long recordSetId)
          Deletes the d d l record set with the primary key from the database.
static void deleteRecordSet(DDLRecordSet recordSet)
           
static void deleteRecordSet(long recordSetId)
           
static void deleteRecordSet(long groupId, String recordSetKey)
           
static void deleteRecordSets(long groupId)
           
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 DDLRecordSet fetchDDLRecordSet(long recordSetId)
           
static DDLRecordSet fetchRecordSet(long groupId, String recordSetKey)
           
static String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
static DDLRecordSet getDDLRecordSet(long recordSetId)
          Returns the d d l record set with the primary key.
static DDLRecordSet getDDLRecordSetByUuidAndGroupId(String uuid, long groupId)
          Returns the d d l record set with the UUID in the group.
static List<DDLRecordSet> getDDLRecordSets(int start, int end)
          Returns a range of all the d d l record sets.
static int getDDLRecordSetsCount()
          Returns the number of d d l record sets.
static PersistedModel getPersistedModel(Serializable primaryKeyObj)
           
static DDLRecordSet getRecordSet(long recordSetId)
           
static DDLRecordSet getRecordSet(long groupId, String recordSetKey)
           
static List<DDLRecordSet> getRecordSets(long groupId)
           
static int getRecordSetsCount(long groupId)
           
static DDLRecordSetLocalService getService()
           
static List<DDLRecordSet> search(long companyId, long groupId, String keywords, int scope, int start, int end, OrderByComparator orderByComparator)
           
static List<DDLRecordSet> search(long companyId, long groupId, String name, String description, int scope, boolean andOperator, int start, int end, OrderByComparator orderByComparator)
           
static int searchCount(long companyId, long groupId, String keywords, int scope)
           
static int searchCount(long companyId, long groupId, String name, String description, int scope, boolean andOperator)
           
static void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 void setService(DDLRecordSetLocalService service)
          Deprecated.  
static DDLRecordSet updateDDLRecordSet(DDLRecordSet ddlRecordSet)
          Updates the d d l record set in the database or adds it if it does not yet exist.
static DDLRecordSet updateDDLRecordSet(DDLRecordSet ddlRecordSet, boolean merge)
          Updates the d d l record set in the database or adds it if it does not yet exist.
static DDLRecordSet updateMinDisplayRows(long recordSetId, int minDisplayRows, ServiceContext serviceContext)
           
static DDLRecordSet updateRecordSet(long recordSetId, long ddmStructureId, Map<Locale,String> nameMap, Map<Locale,String> descriptionMap, int minDisplayRows, ServiceContext serviceContext)
           
static DDLRecordSet updateRecordSet(long groupId, long ddmStructureId, String recordSetKey, Map<Locale,String> nameMap, Map<Locale,String> descriptionMap, int minDisplayRows, ServiceContext serviceContext)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DDLRecordSetLocalServiceUtil

public DDLRecordSetLocalServiceUtil()
Method Detail

addDDLRecordSet

public static DDLRecordSet addDDLRecordSet(DDLRecordSet ddlRecordSet)
                                    throws SystemException
Adds the d d l record set to the database. Also notifies the appropriate model listeners.

Parameters:
ddlRecordSet - the d d l record set
Returns:
the d d l record set that was added
Throws:
SystemException - if a system exception occurred

createDDLRecordSet

public static DDLRecordSet createDDLRecordSet(long recordSetId)
Creates a new d d l record set with the primary key. Does not add the d d l record set to the database.

Parameters:
recordSetId - the primary key for the new d d l record set
Returns:
the new d d l record set

deleteDDLRecordSet

public static DDLRecordSet deleteDDLRecordSet(long recordSetId)
                                       throws PortalException,
                                              SystemException
Deletes the d d l record set with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
recordSetId - the primary key of the d d l record set
Returns:
the d d l record set that was removed
Throws:
PortalException - if a d d l record set with the primary key could not be found
SystemException - if a system exception occurred

deleteDDLRecordSet

public static DDLRecordSet deleteDDLRecordSet(DDLRecordSet ddlRecordSet)
                                       throws SystemException
Deletes the d d l record set from the database. Also notifies the appropriate model listeners.

Parameters:
ddlRecordSet - the d d l record set
Returns:
the d d l record set that was removed
Throws:
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.

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.

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

fetchDDLRecordSet

public static DDLRecordSet fetchDDLRecordSet(long recordSetId)
                                      throws SystemException
Throws:
SystemException

getDDLRecordSet

public static DDLRecordSet getDDLRecordSet(long recordSetId)
                                    throws PortalException,
                                           SystemException
Returns the d d l record set with the primary key.

Parameters:
recordSetId - the primary key of the d d l record set
Returns:
the d d l record set
Throws:
PortalException - if a d d l record set 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

getDDLRecordSetByUuidAndGroupId

public static DDLRecordSet getDDLRecordSetByUuidAndGroupId(String uuid,
                                                           long groupId)
                                                    throws PortalException,
                                                           SystemException
Returns the d d l record set with the UUID in the group.

Parameters:
uuid - the UUID of d d l record set
groupId - the group id of the d d l record set
Returns:
the d d l record set
Throws:
PortalException - if a d d l record set with the UUID in the group could not be found
SystemException - if a system exception occurred

getDDLRecordSets

public static List<DDLRecordSet> getDDLRecordSets(int start,
                                                  int end)
                                           throws SystemException
Returns a range of all the d d l record sets.

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 d d l record sets
end - the upper bound of the range of d d l record sets (not inclusive)
Returns:
the range of d d l record sets
Throws:
SystemException - if a system exception occurred

getDDLRecordSetsCount

public static int getDDLRecordSetsCount()
                                 throws SystemException
Returns the number of d d l record sets.

Returns:
the number of d d l record sets
Throws:
SystemException - if a system exception occurred

updateDDLRecordSet

public static DDLRecordSet updateDDLRecordSet(DDLRecordSet ddlRecordSet)
                                       throws SystemException
Updates the d d l record set in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.

Parameters:
ddlRecordSet - the d d l record set
Returns:
the d d l record set that was updated
Throws:
SystemException - if a system exception occurred

updateDDLRecordSet

public static DDLRecordSet updateDDLRecordSet(DDLRecordSet ddlRecordSet,
                                              boolean merge)
                                       throws SystemException
Updates the d d l record set in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.

Parameters:
ddlRecordSet - the d d l record set
merge - whether to merge the d d l record set 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 d d l record set 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

addRecordSet

public static DDLRecordSet addRecordSet(long userId,
                                        long groupId,
                                        long ddmStructureId,
                                        String recordSetKey,
                                        Map<Locale,String> nameMap,
                                        Map<Locale,String> descriptionMap,
                                        int minDisplayRows,
                                        int scope,
                                        ServiceContext serviceContext)
                                 throws PortalException,
                                        SystemException
Throws:
PortalException
SystemException

addRecordSetResources

public static void addRecordSetResources(DDLRecordSet recordSet,
                                         boolean addGroupPermissions,
                                         boolean addGuestPermissions)
                                  throws PortalException,
                                         SystemException
Throws:
PortalException
SystemException

addRecordSetResources

public static void addRecordSetResources(DDLRecordSet recordSet,
                                         String[] groupPermissions,
                                         String[] guestPermissions)
                                  throws PortalException,
                                         SystemException
Throws:
PortalException
SystemException

deleteRecordSet

public static void deleteRecordSet(DDLRecordSet recordSet)
                            throws PortalException,
                                   SystemException
Throws:
PortalException
SystemException

deleteRecordSet

public static void deleteRecordSet(long recordSetId)
                            throws PortalException,
                                   SystemException
Throws:
PortalException
SystemException

deleteRecordSet

public static void deleteRecordSet(long groupId,
                                   String recordSetKey)
                            throws PortalException,
                                   SystemException
Throws:
PortalException
SystemException

deleteRecordSets

public static void deleteRecordSets(long groupId)
                             throws PortalException,
                                    SystemException
Throws:
PortalException
SystemException

fetchRecordSet

public static DDLRecordSet fetchRecordSet(long groupId,
                                          String recordSetKey)
                                   throws SystemException
Throws:
SystemException

getRecordSet

public static DDLRecordSet getRecordSet(long recordSetId)
                                 throws PortalException,
                                        SystemException
Throws:
PortalException
SystemException

getRecordSet

public static DDLRecordSet getRecordSet(long groupId,
                                        String recordSetKey)
                                 throws PortalException,
                                        SystemException
Throws:
PortalException
SystemException

getRecordSets

public static List<DDLRecordSet> getRecordSets(long groupId)
                                        throws SystemException
Throws:
SystemException

getRecordSetsCount

public static int getRecordSetsCount(long groupId)
                              throws SystemException
Throws:
SystemException

search

public static List<DDLRecordSet> search(long companyId,
                                        long groupId,
                                        String keywords,
                                        int scope,
                                        int start,
                                        int end,
                                        OrderByComparator orderByComparator)
                                 throws SystemException
Throws:
SystemException

search

public static List<DDLRecordSet> search(long companyId,
                                        long groupId,
                                        String name,
                                        String description,
                                        int scope,
                                        boolean andOperator,
                                        int start,
                                        int end,
                                        OrderByComparator orderByComparator)
                                 throws SystemException
Throws:
SystemException

searchCount

public static int searchCount(long companyId,
                              long groupId,
                              String keywords,
                              int scope)
                       throws SystemException
Throws:
SystemException

searchCount

public static int searchCount(long companyId,
                              long groupId,
                              String name,
                              String description,
                              int scope,
                              boolean andOperator)
                       throws SystemException
Throws:
SystemException

updateMinDisplayRows

public static DDLRecordSet updateMinDisplayRows(long recordSetId,
                                                int minDisplayRows,
                                                ServiceContext serviceContext)
                                         throws PortalException,
                                                SystemException
Throws:
PortalException
SystemException

updateRecordSet

public static DDLRecordSet updateRecordSet(long recordSetId,
                                           long ddmStructureId,
                                           Map<Locale,String> nameMap,
                                           Map<Locale,String> descriptionMap,
                                           int minDisplayRows,
                                           ServiceContext serviceContext)
                                    throws PortalException,
                                           SystemException
Throws:
PortalException
SystemException

updateRecordSet

public static DDLRecordSet updateRecordSet(long groupId,
                                           long ddmStructureId,
                                           String recordSetKey,
                                           Map<Locale,String> nameMap,
                                           Map<Locale,String> descriptionMap,
                                           int minDisplayRows,
                                           ServiceContext serviceContext)
                                    throws PortalException,
                                           SystemException
Throws:
PortalException
SystemException

getService

public static DDLRecordSetLocalService getService()

setService

public void setService(DDLRecordSetLocalService service)
Deprecated. 


Liferay 6.1.2-ce-ga3