Liferay 7.0-ce-m3

com.liferay.portlet.dynamicdatalists.service
Class DDLRecordSetLocalServiceUtil

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

@ProviderType
public class DDLRecordSetLocalServiceUtil
extends Object

Provides the local service utility for DDLRecordSet. This utility wraps DDLRecordSetLocalServiceImpl 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:
DDLRecordSetLocalService, DDLRecordSetLocalServiceBaseImpl, DDLRecordSetLocalServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

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 PersistedModel deletePersistedModel(PersistedModel persistedModel)
           
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
<T> List<T>
dynamicQuery(DynamicQuery dynamicQuery)
          Performs a dynamic query on the database and returns the matching rows.
static
<T> List<T>
dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
          Performs a dynamic query on the database and returns a range of the matching rows.
static
<T> List<T>
dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<T> 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 matching the dynamic query.
static long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
          Returns the number of rows matching the dynamic query.
static DDLRecordSet fetchDDLRecordSet(long recordSetId)
           
static DDLRecordSet fetchDDLRecordSetByUuidAndGroupId(String uuid, long groupId)
          Returns the d d l record set matching the UUID and group.
static DDLRecordSet fetchRecordSet(long recordSetId)
           
static DDLRecordSet fetchRecordSet(long groupId, String recordSetKey)
           
static ActionableDynamicQuery getActionableDynamicQuery()
           
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 matching the UUID and group.
static List<DDLRecordSet> getDDLRecordSets(int start, int end)
          Returns a range of all the d d l record sets.
static List<DDLRecordSet> getDDLRecordSetsByUuidAndCompanyId(String uuid, long companyId)
          Returns all the d d l record sets matching the UUID and company.
static List<DDLRecordSet> getDDLRecordSetsByUuidAndCompanyId(String uuid, long companyId, int start, int end, OrderByComparator<DDLRecordSet> orderByComparator)
          Returns a range of d d l record sets matching the UUID and company.
static int getDDLRecordSetsCount()
          Returns the number of d d l record sets.
static ExportActionableDynamicQuery getExportActionableDynamicQuery(PortletDataContext portletDataContext)
           
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<DDLRecordSet> orderByComparator)
           
static List<DDLRecordSet> search(long companyId, long groupId, String name, String description, int scope, boolean andOperator, int start, int end, OrderByComparator<DDLRecordSet> 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. As of 6.2.0
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 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)
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

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
Throws:
PortalException

addRecordSetResources

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

addRecordSetResources

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

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(DDLRecordSet ddlRecordSet)
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

deleteDDLRecordSet

public static DDLRecordSet deleteDDLRecordSet(long recordSetId)
                                       throws PortalException
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

deletePersistedModel

public static PersistedModel deletePersistedModel(PersistedModel persistedModel)
                                           throws PortalException
Throws:
PortalException

deleteRecordSet

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

deleteRecordSet

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

deleteRecordSet

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

deleteRecordSets

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

dynamicQuery

public static DynamicQuery dynamicQuery()

dynamicQuery

public static <T> List<T> dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows.

Parameters:
dynamicQuery - the dynamic query
Returns:
the matching rows

dynamicQuery

public static <T> List<T> dynamicQuery(DynamicQuery dynamicQuery,
                                       int start,
                                       int end)
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 DDLRecordSetModelImpl. 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

dynamicQuery

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

dynamicQueryCount

public static long dynamicQueryCount(DynamicQuery dynamicQuery)
Returns the number of rows matching the dynamic query.

Parameters:
dynamicQuery - the dynamic query
Returns:
the number of rows matching the dynamic query

dynamicQueryCount

public static long dynamicQueryCount(DynamicQuery dynamicQuery,
                                     Projection projection)
Returns the number of rows matching the dynamic query.

Parameters:
dynamicQuery - the dynamic query
projection - the projection to apply to the query
Returns:
the number of rows matching the dynamic query

fetchDDLRecordSet

public static DDLRecordSet fetchDDLRecordSet(long recordSetId)

fetchDDLRecordSetByUuidAndGroupId

public static DDLRecordSet fetchDDLRecordSetByUuidAndGroupId(String uuid,
                                                             long groupId)
Returns the d d l record set matching the UUID and group.

Parameters:
uuid - the d d l record set's UUID
groupId - the primary key of the group
Returns:
the matching d d l record set, or null if a matching d d l record set could not be found

fetchRecordSet

public static DDLRecordSet fetchRecordSet(long groupId,
                                          String recordSetKey)

fetchRecordSet

public static DDLRecordSet fetchRecordSet(long recordSetId)

getActionableDynamicQuery

public static ActionableDynamicQuery getActionableDynamicQuery()

getBeanIdentifier

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

Returns:
the Spring bean ID for this bean

getDDLRecordSet

public static DDLRecordSet getDDLRecordSet(long recordSetId)
                                    throws PortalException
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

getDDLRecordSetByUuidAndGroupId

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

Parameters:
uuid - the d d l record set's UUID
groupId - the primary key of the group
Returns:
the matching d d l record set
Throws:
PortalException - if a matching d d l record set could not be found

getDDLRecordSets

public static List<DDLRecordSet> getDDLRecordSets(int start,
                                                  int end)
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. 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 DDLRecordSetModelImpl. 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 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

getDDLRecordSetsByUuidAndCompanyId

public static List<DDLRecordSet> getDDLRecordSetsByUuidAndCompanyId(String uuid,
                                                                    long companyId)
Returns all the d d l record sets matching the UUID and company.

Parameters:
uuid - the UUID of the d d l record sets
companyId - the primary key of the company
Returns:
the matching d d l record sets, or an empty list if no matches were found

getDDLRecordSetsByUuidAndCompanyId

public static List<DDLRecordSet> getDDLRecordSetsByUuidAndCompanyId(String uuid,
                                                                    long companyId,
                                                                    int start,
                                                                    int end,
                                                                    OrderByComparator<DDLRecordSet> orderByComparator)
Returns a range of d d l record sets matching the UUID and company.

Parameters:
uuid - the UUID of the d d l record sets
companyId - the primary key of the company
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)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the range of matching d d l record sets, or an empty list if no matches were found

getDDLRecordSetsCount

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

Returns:
the number of d d l record sets

getExportActionableDynamicQuery

public static ExportActionableDynamicQuery getExportActionableDynamicQuery(PortletDataContext portletDataContext)

getPersistedModel

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

getRecordSet

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

getRecordSet

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

getRecordSets

public static List<DDLRecordSet> getRecordSets(long groupId)

getRecordSetsCount

public static int getRecordSetsCount(long groupId)

search

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

search

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

searchCount

public static int searchCount(long companyId,
                              long groupId,
                              String keywords,
                              int scope)

searchCount

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

setBeanIdentifier

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

Parameters:
beanIdentifier - the Spring bean ID for this bean

updateDDLRecordSet

public static DDLRecordSet updateDDLRecordSet(DDLRecordSet ddlRecordSet)
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

updateMinDisplayRows

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

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
Throws:
PortalException

updateRecordSet

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

getService

public static DDLRecordSetLocalService getService()

setService

@Deprecated
public void setService(DDLRecordSetLocalService service)
Deprecated. As of 6.2.0


Liferay 7.0-ce-m3