Liferay 7.0-ce-b4

com.liferay.portal.service
Class PortletPreferencesLocalServiceUtil

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

@ProviderType
public class PortletPreferencesLocalServiceUtil
extends Object

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

Constructor Summary
PortletPreferencesLocalServiceUtil()
           
 
Method Summary
static PortletPreferences addPortletPreferences(long companyId, long ownerId, int ownerType, long plid, String portletId, Portlet portlet, String defaultPreferences)
           
static PortletPreferences addPortletPreferences(PortletPreferences portletPreferences)
          Adds the portlet preferences to the database.
static PortletPreferences createPortletPreferences(long portletPreferencesId)
          Creates a new portlet preferences with the primary key.
static PersistedModel deletePersistedModel(PersistedModel persistedModel)
           
static PortletPreferences deletePortletPreferences(long portletPreferencesId)
          Deletes the portlet preferences with the primary key from the database.
static void deletePortletPreferences(long ownerId, int ownerType, long plid)
           
static void deletePortletPreferences(long ownerId, int ownerType, long plid, String portletId)
           
static PortletPreferences deletePortletPreferences(PortletPreferences portletPreferences)
          Deletes the portlet preferences from the database.
static void deletePortletPreferencesByPlid(long plid)
           
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 PortletPreferences fetchPortletPreferences(long portletPreferencesId)
           
static PortletPreferences fetchPreferences(long companyId, long ownerId, int ownerType, long plid, String portletId)
           
static PortletPreferences fetchPreferences(PortletPreferencesIds portletPreferencesIds)
           
static ActionableDynamicQuery getActionableDynamicQuery()
           
static PortletPreferences getDefaultPreferences(long companyId, String portletId)
           
static IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
           
static String getOSGiServiceIdentifier()
          Returns the OSGi service identifier.
static PersistedModel getPersistedModel(Serializable primaryKeyObj)
           
static List<PortletPreferences> getPortletPreferences()
           
static List<PortletPreferences> getPortletPreferences(int ownerType, long plid, String portletId)
           
static PortletPreferences getPortletPreferences(long portletPreferencesId)
          Returns the portlet preferences with the primary key.
static List<PortletPreferences> getPortletPreferences(long ownerId, int ownerType, long plid)
           
static PortletPreferences getPortletPreferences(long ownerId, int ownerType, long plid, String portletId)
           
static List<PortletPreferences> getPortletPreferences(long companyId, long groupId, long ownerId, int ownerType, String portletId, boolean privateLayout)
           
static List<PortletPreferences> getPortletPreferences(long plid, String portletId)
           
static List<PortletPreferences> getPortletPreferencesByPlid(long plid)
           
static long getPortletPreferencesCount(int ownerType, long plid, String portletId)
           
static long getPortletPreferencesCount(int ownerType, String portletId)
           
static long getPortletPreferencesCount(long ownerId, int ownerType, long plid, Portlet portlet, boolean excludeDefaultPreferences)
           
static long getPortletPreferencesCount(long ownerId, int ownerType, String portletId, boolean excludeDefaultPreferences)
           
static List<PortletPreferences> getPortletPreferenceses(int start, int end)
          Returns a range of all the portlet preferenceses.
static int getPortletPreferencesesCount()
          Returns the number of portlet preferenceses.
static PortletPreferences getPreferences(long companyId, long ownerId, int ownerType, long plid, String portletId)
           
static PortletPreferences getPreferences(long companyId, long ownerId, int ownerType, long plid, String portletId, String defaultPreferences)
           
static PortletPreferences getPreferences(PortletPreferencesIds portletPreferencesIds)
           
static PortletPreferencesLocalService getService()
           
static PortletPreferences getStrictPreferences(long companyId, long ownerId, int ownerType, long plid, String portletId)
           
static PortletPreferences getStrictPreferences(PortletPreferencesIds portletPreferencesIds)
           
static PortletPreferences updatePortletPreferences(PortletPreferences portletPreferences)
          Updates the portlet preferences in the database or adds it if it does not yet exist.
static PortletPreferences updatePreferences(long ownerId, int ownerType, long plid, String portletId, PortletPreferences portletPreferences)
           
static PortletPreferences updatePreferences(long ownerId, int ownerType, long plid, String portletId, String xml)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PortletPreferencesLocalServiceUtil

public PortletPreferencesLocalServiceUtil()
Method Detail

addPortletPreferences

public static PortletPreferences addPortletPreferences(long companyId,
                                                       long ownerId,
                                                       int ownerType,
                                                       long plid,
                                                       String portletId,
                                                       Portlet portlet,
                                                       String defaultPreferences)

addPortletPreferences

public static PortletPreferences addPortletPreferences(PortletPreferences portletPreferences)
Adds the portlet preferences to the database. Also notifies the appropriate model listeners.

Parameters:
portletPreferences - the portlet preferences
Returns:
the portlet preferences that was added

createPortletPreferences

public static PortletPreferences createPortletPreferences(long portletPreferencesId)
Creates a new portlet preferences with the primary key. Does not add the portlet preferences to the database.

Parameters:
portletPreferencesId - the primary key for the new portlet preferences
Returns:
the new portlet preferences

deletePersistedModel

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

deletePortletPreferences

public static void deletePortletPreferences(long ownerId,
                                            int ownerType,
                                            long plid)

deletePortletPreferences

public static void deletePortletPreferences(long ownerId,
                                            int ownerType,
                                            long plid,
                                            String portletId)
                                     throws PortalException
Throws:
PortalException

deletePortletPreferences

public static PortletPreferences deletePortletPreferences(PortletPreferences portletPreferences)
Deletes the portlet preferences from the database. Also notifies the appropriate model listeners.

Parameters:
portletPreferences - the portlet preferences
Returns:
the portlet preferences that was removed

deletePortletPreferences

public static PortletPreferences deletePortletPreferences(long portletPreferencesId)
                                                   throws PortalException
Deletes the portlet preferences with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
portletPreferencesId - the primary key of the portlet preferences
Returns:
the portlet preferences that was removed
Throws:
PortalException - if a portlet preferences with the primary key could not be found

deletePortletPreferencesByPlid

public static void deletePortletPreferencesByPlid(long plid)

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

fetchPortletPreferences

public static PortletPreferences fetchPortletPreferences(long portletPreferencesId)

fetchPreferences

public static PortletPreferences fetchPreferences(long companyId,
                                                  long ownerId,
                                                  int ownerType,
                                                  long plid,
                                                  String portletId)

fetchPreferences

public static PortletPreferences fetchPreferences(PortletPreferencesIds portletPreferencesIds)

getActionableDynamicQuery

public static ActionableDynamicQuery getActionableDynamicQuery()

getDefaultPreferences

public static PortletPreferences getDefaultPreferences(long companyId,
                                                       String portletId)

getIndexableActionableDynamicQuery

public static IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()

getOSGiServiceIdentifier

public static String getOSGiServiceIdentifier()
Returns the OSGi service identifier.

Returns:
the OSGi service identifier

getPersistedModel

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

getPortletPreferences

public static List<PortletPreferences> getPortletPreferences()

getPortletPreferences

public static List<PortletPreferences> getPortletPreferences(long companyId,
                                                             long groupId,
                                                             long ownerId,
                                                             int ownerType,
                                                             String portletId,
                                                             boolean privateLayout)

getPortletPreferences

public static List<PortletPreferences> getPortletPreferences(long ownerId,
                                                             int ownerType,
                                                             long plid)

getPortletPreferences

public static PortletPreferences getPortletPreferences(long ownerId,
                                                       int ownerType,
                                                       long plid,
                                                       String portletId)
                                                throws PortalException
Throws:
PortalException

getPortletPreferences

public static List<PortletPreferences> getPortletPreferences(int ownerType,
                                                             long plid,
                                                             String portletId)

getPortletPreferences

public static List<PortletPreferences> getPortletPreferences(long plid,
                                                             String portletId)

getPortletPreferences

public static PortletPreferences getPortletPreferences(long portletPreferencesId)
                                                throws PortalException
Returns the portlet preferences with the primary key.

Parameters:
portletPreferencesId - the primary key of the portlet preferences
Returns:
the portlet preferences
Throws:
PortalException - if a portlet preferences with the primary key could not be found

getPortletPreferencesByPlid

public static List<PortletPreferences> getPortletPreferencesByPlid(long plid)

getPortletPreferencesCount

public static long getPortletPreferencesCount(long ownerId,
                                              int ownerType,
                                              long plid,
                                              Portlet portlet,
                                              boolean excludeDefaultPreferences)

getPortletPreferencesCount

public static long getPortletPreferencesCount(long ownerId,
                                              int ownerType,
                                              String portletId,
                                              boolean excludeDefaultPreferences)

getPortletPreferencesCount

public static long getPortletPreferencesCount(int ownerType,
                                              long plid,
                                              String portletId)

getPortletPreferencesCount

public static long getPortletPreferencesCount(int ownerType,
                                              String portletId)

getPortletPreferenceses

public static List<PortletPreferences> getPortletPreferenceses(int start,
                                                               int end)
Returns a range of all the portlet preferenceses.

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 PortletPreferencesModelImpl. 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 portlet preferenceses
end - the upper bound of the range of portlet preferenceses (not inclusive)
Returns:
the range of portlet preferenceses

getPortletPreferencesesCount

public static int getPortletPreferencesesCount()
Returns the number of portlet preferenceses.

Returns:
the number of portlet preferenceses

getPreferences

public static PortletPreferences getPreferences(long companyId,
                                                long ownerId,
                                                int ownerType,
                                                long plid,
                                                String portletId)

getPreferences

public static PortletPreferences getPreferences(long companyId,
                                                long ownerId,
                                                int ownerType,
                                                long plid,
                                                String portletId,
                                                String defaultPreferences)

getPreferences

public static PortletPreferences getPreferences(PortletPreferencesIds portletPreferencesIds)

getStrictPreferences

public static PortletPreferences getStrictPreferences(long companyId,
                                                      long ownerId,
                                                      int ownerType,
                                                      long plid,
                                                      String portletId)

getStrictPreferences

public static PortletPreferences getStrictPreferences(PortletPreferencesIds portletPreferencesIds)

updatePortletPreferences

public static PortletPreferences updatePortletPreferences(PortletPreferences portletPreferences)
Updates the portlet preferences in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.

Parameters:
portletPreferences - the portlet preferences
Returns:
the portlet preferences that was updated

updatePreferences

public static PortletPreferences updatePreferences(long ownerId,
                                                   int ownerType,
                                                   long plid,
                                                   String portletId,
                                                   PortletPreferences portletPreferences)

updatePreferences

public static PortletPreferences updatePreferences(long ownerId,
                                                   int ownerType,
                                                   long plid,
                                                   String portletId,
                                                   String xml)

getService

public static PortletPreferencesLocalService getService()

Liferay 7.0-ce-b4