Liferay 6.0.5

com.liferay.portlet.social.service.persistence
Class SocialEquitySettingUtil

java.lang.Object
  extended by com.liferay.portlet.social.service.persistence.SocialEquitySettingUtil

public class SocialEquitySettingUtil
extends Object

The persistence utility for the social equity setting service. This utility wraps SocialEquitySettingPersistenceImpl and provides direct access to the database for CRUD operations. This utility should only be used by the service layer, as it must operate within a transaction. Never access this utility in a JSP, controller, model, or other front-end class.

Never modify this class directly. Modify service.xml and rerun ServiceBuilder to regenerate this class.

Caching information and settings can be found in portal.properties

See Also:
SocialEquitySettingPersistence, SocialEquitySettingPersistenceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Constructor Summary
SocialEquitySettingUtil()
           
 
Method Summary
static void cacheResult(List<SocialEquitySetting> socialEquitySettings)
          Caches the social equity settings in the entity cache if it is enabled.
static void cacheResult(SocialEquitySetting socialEquitySetting)
          Caches the social equity setting in the entity cache if it is enabled.
static void clearCache()
           
static void clearCache(SocialEquitySetting socialEquitySetting)
           
static int countAll()
          Counts all the social equity settings.
static int countByG_C_A_T(long groupId, long classNameId, String actionId, int type)
          Counts all the social equity settings where groupId = ? and classNameId = ? and actionId = ? and type = ?.
static int countByG_C_A(long groupId, long classNameId, String actionId)
          Counts all the social equity settings where groupId = ? and classNameId = ? and actionId = ?.
 long countWithDynamicQuery(DynamicQuery dynamicQuery)
           
static SocialEquitySetting create(long equitySettingId)
          Creates a new social equity setting with the primary key.
static SocialEquitySetting fetchByG_C_A_T(long groupId, long classNameId, String actionId, int type)
          Finds the social equity setting where groupId = ? and classNameId = ? and actionId = ? and type = ? or returns null if it could not be found.
static SocialEquitySetting fetchByG_C_A_T(long groupId, long classNameId, String actionId, int type, boolean retrieveFromCache)
          Finds the social equity setting where groupId = ? and classNameId = ? and actionId = ? and type = ? or returns null if it could not be found, optionally using the finder cache.
static SocialEquitySetting fetchByPrimaryKey(long equitySettingId)
          Finds the social equity setting with the primary key or returns null if it could not be found.
static List<SocialEquitySetting> findAll()
          Finds all the social equity settings.
static List<SocialEquitySetting> findAll(int start, int end)
          Finds a range of all the social equity settings.
static List<SocialEquitySetting> findAll(int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the social equity settings.
static SocialEquitySetting findByG_C_A_First(long groupId, long classNameId, String actionId, OrderByComparator orderByComparator)
          Finds the first social equity setting in the ordered set where groupId = ? and classNameId = ? and actionId = ?.
static SocialEquitySetting findByG_C_A_Last(long groupId, long classNameId, String actionId, OrderByComparator orderByComparator)
          Finds the last social equity setting in the ordered set where groupId = ? and classNameId = ? and actionId = ?.
static SocialEquitySetting[] findByG_C_A_PrevAndNext(long equitySettingId, long groupId, long classNameId, String actionId, OrderByComparator orderByComparator)
          Finds the social equity settings before and after the current social equity setting in the ordered set where groupId = ? and classNameId = ? and actionId = ?.
static SocialEquitySetting findByG_C_A_T(long groupId, long classNameId, String actionId, int type)
          Finds the social equity setting where groupId = ? and classNameId = ? and actionId = ? and type = ? or throws a NoSuchEquitySettingException if it could not be found.
static List<SocialEquitySetting> findByG_C_A(long groupId, long classNameId, String actionId)
          Finds all the social equity settings where groupId = ? and classNameId = ? and actionId = ?.
static List<SocialEquitySetting> findByG_C_A(long groupId, long classNameId, String actionId, int start, int end)
          Finds a range of all the social equity settings where groupId = ? and classNameId = ? and actionId = ?.
static List<SocialEquitySetting> findByG_C_A(long groupId, long classNameId, String actionId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the social equity settings where groupId = ? and classNameId = ? and actionId = ?.
static SocialEquitySetting findByPrimaryKey(long equitySettingId)
          Finds the social equity setting with the primary key or throws a NoSuchEquitySettingException if it could not be found.
static List<SocialEquitySetting> findWithDynamicQuery(DynamicQuery dynamicQuery)
           
static List<SocialEquitySetting> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
           
static List<SocialEquitySetting> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
           
static SocialEquitySettingPersistence getPersistence()
           
static SocialEquitySetting remove(long equitySettingId)
          Removes the social equity setting with the primary key from the database.
static SocialEquitySetting remove(SocialEquitySetting socialEquitySetting)
           
static void removeAll()
          Removes all the social equity settings from the database.
static void removeByG_C_A_T(long groupId, long classNameId, String actionId, int type)
          Removes the social equity setting where groupId = ? and classNameId = ? and actionId = ? and type = ? from the database.
static void removeByG_C_A(long groupId, long classNameId, String actionId)
          Removes all the social equity settings where groupId = ? and classNameId = ? and actionId = ? from the database.
 void setPersistence(SocialEquitySettingPersistence persistence)
           
static SocialEquitySetting update(SocialEquitySetting socialEquitySetting, boolean merge)
           
static SocialEquitySetting update(SocialEquitySetting socialEquitySetting, boolean merge, ServiceContext serviceContext)
           
static SocialEquitySetting updateImpl(SocialEquitySetting socialEquitySetting, boolean merge)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SocialEquitySettingUtil

public SocialEquitySettingUtil()
Method Detail

clearCache

public static void clearCache()
See Also:
BasePersistence.clearCache()

clearCache

public static void clearCache(SocialEquitySetting socialEquitySetting)
See Also:
BasePersistence.clearCache(com.liferay.portal.model.BaseModel)

countWithDynamicQuery

public long countWithDynamicQuery(DynamicQuery dynamicQuery)
                           throws SystemException
Throws:
SystemException
See Also:
BasePersistence.countWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<SocialEquitySetting> findWithDynamicQuery(DynamicQuery dynamicQuery)
                                                      throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<SocialEquitySetting> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                                             int start,
                                                             int end)
                                                      throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)

findWithDynamicQuery

public static List<SocialEquitySetting> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                                             int start,
                                                             int end,
                                                             OrderByComparator orderByComparator)
                                                      throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)

remove

public static SocialEquitySetting remove(SocialEquitySetting socialEquitySetting)
                                  throws SystemException
Throws:
SystemException
See Also:
BasePersistence.remove(com.liferay.portal.model.BaseModel)

update

public static SocialEquitySetting update(SocialEquitySetting socialEquitySetting,
                                         boolean merge)
                                  throws SystemException
Throws:
SystemException
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean)

update

public static SocialEquitySetting update(SocialEquitySetting socialEquitySetting,
                                         boolean merge,
                                         ServiceContext serviceContext)
                                  throws SystemException
Throws:
SystemException
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean, ServiceContext)

cacheResult

public static void cacheResult(SocialEquitySetting socialEquitySetting)
Caches the social equity setting in the entity cache if it is enabled.

Parameters:
socialEquitySetting - the social equity setting to cache

cacheResult

public static void cacheResult(List<SocialEquitySetting> socialEquitySettings)
Caches the social equity settings in the entity cache if it is enabled.

Parameters:
socialEquitySettings - the social equity settings to cache

create

public static SocialEquitySetting create(long equitySettingId)
Creates a new social equity setting with the primary key. Does not add the social equity setting to the database.

Parameters:
equitySettingId - the primary key for the new social equity setting
Returns:
the new social equity setting

remove

public static SocialEquitySetting remove(long equitySettingId)
                                  throws SystemException,
                                         NoSuchEquitySettingException
Removes the social equity setting with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
equitySettingId - the primary key of the social equity setting to remove
Returns:
the social equity setting that was removed
Throws:
NoSuchEquitySettingException - if a social equity setting with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

public static SocialEquitySetting updateImpl(SocialEquitySetting socialEquitySetting,
                                             boolean merge)
                                      throws SystemException
Throws:
SystemException

findByPrimaryKey

public static SocialEquitySetting findByPrimaryKey(long equitySettingId)
                                            throws SystemException,
                                                   NoSuchEquitySettingException
Finds the social equity setting with the primary key or throws a NoSuchEquitySettingException if it could not be found.

Parameters:
equitySettingId - the primary key of the social equity setting to find
Returns:
the social equity setting
Throws:
NoSuchEquitySettingException - if a social equity setting with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

public static SocialEquitySetting fetchByPrimaryKey(long equitySettingId)
                                             throws SystemException
Finds the social equity setting with the primary key or returns null if it could not be found.

Parameters:
equitySettingId - the primary key of the social equity setting to find
Returns:
the social equity setting, or null if a social equity setting with the primary key could not be found
Throws:
SystemException - if a system exception occurred

findByG_C_A

public static List<SocialEquitySetting> findByG_C_A(long groupId,
                                                    long classNameId,
                                                    String actionId)
                                             throws SystemException
Finds all the social equity settings where groupId = ? and classNameId = ? and actionId = ?.

Parameters:
groupId - the group id to search with
classNameId - the class name id to search with
actionId - the action id to search with
Returns:
the matching social equity settings
Throws:
SystemException - if a system exception occurred

findByG_C_A

public static List<SocialEquitySetting> findByG_C_A(long groupId,
                                                    long classNameId,
                                                    String actionId,
                                                    int start,
                                                    int end)
                                             throws SystemException
Finds a range of all the social equity settings where groupId = ? and classNameId = ? and actionId = ?.

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:
groupId - the group id to search with
classNameId - the class name id to search with
actionId - the action id to search with
start - the lower bound of the range of social equity settings to return
end - the upper bound of the range of social equity settings to return (not inclusive)
Returns:
the range of matching social equity settings
Throws:
SystemException - if a system exception occurred

findByG_C_A

public static List<SocialEquitySetting> findByG_C_A(long groupId,
                                                    long classNameId,
                                                    String actionId,
                                                    int start,
                                                    int end,
                                                    OrderByComparator orderByComparator)
                                             throws SystemException
Finds an ordered range of all the social equity settings where groupId = ? and classNameId = ? and actionId = ?.

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:
groupId - the group id to search with
classNameId - the class name id to search with
actionId - the action id to search with
start - the lower bound of the range of social equity settings to return
end - the upper bound of the range of social equity settings to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching social equity settings
Throws:
SystemException - if a system exception occurred

findByG_C_A_First

public static SocialEquitySetting findByG_C_A_First(long groupId,
                                                    long classNameId,
                                                    String actionId,
                                                    OrderByComparator orderByComparator)
                                             throws SystemException,
                                                    NoSuchEquitySettingException
Finds the first social equity setting in the ordered set where groupId = ? and classNameId = ? and actionId = ?.

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:
groupId - the group id to search with
classNameId - the class name id to search with
actionId - the action id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching social equity setting
Throws:
NoSuchEquitySettingException - if a matching social equity setting could not be found
SystemException - if a system exception occurred

findByG_C_A_Last

public static SocialEquitySetting findByG_C_A_Last(long groupId,
                                                   long classNameId,
                                                   String actionId,
                                                   OrderByComparator orderByComparator)
                                            throws SystemException,
                                                   NoSuchEquitySettingException
Finds the last social equity setting in the ordered set where groupId = ? and classNameId = ? and actionId = ?.

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:
groupId - the group id to search with
classNameId - the class name id to search with
actionId - the action id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching social equity setting
Throws:
NoSuchEquitySettingException - if a matching social equity setting could not be found
SystemException - if a system exception occurred

findByG_C_A_PrevAndNext

public static SocialEquitySetting[] findByG_C_A_PrevAndNext(long equitySettingId,
                                                            long groupId,
                                                            long classNameId,
                                                            String actionId,
                                                            OrderByComparator orderByComparator)
                                                     throws SystemException,
                                                            NoSuchEquitySettingException
Finds the social equity settings before and after the current social equity setting in the ordered set where groupId = ? and classNameId = ? and actionId = ?.

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:
equitySettingId - the primary key of the current social equity setting
groupId - the group id to search with
classNameId - the class name id to search with
actionId - the action id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next social equity setting
Throws:
NoSuchEquitySettingException - if a social equity setting with the primary key could not be found
SystemException - if a system exception occurred

findByG_C_A_T

public static SocialEquitySetting findByG_C_A_T(long groupId,
                                                long classNameId,
                                                String actionId,
                                                int type)
                                         throws SystemException,
                                                NoSuchEquitySettingException
Finds the social equity setting where groupId = ? and classNameId = ? and actionId = ? and type = ? or throws a NoSuchEquitySettingException if it could not be found.

Parameters:
groupId - the group id to search with
classNameId - the class name id to search with
actionId - the action id to search with
type - the type to search with
Returns:
the matching social equity setting
Throws:
NoSuchEquitySettingException - if a matching social equity setting could not be found
SystemException - if a system exception occurred

fetchByG_C_A_T

public static SocialEquitySetting fetchByG_C_A_T(long groupId,
                                                 long classNameId,
                                                 String actionId,
                                                 int type)
                                          throws SystemException
Finds the social equity setting where groupId = ? and classNameId = ? and actionId = ? and type = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
groupId - the group id to search with
classNameId - the class name id to search with
actionId - the action id to search with
type - the type to search with
Returns:
the matching social equity setting, or null if a matching social equity setting could not be found
Throws:
SystemException - if a system exception occurred

fetchByG_C_A_T

public static SocialEquitySetting fetchByG_C_A_T(long groupId,
                                                 long classNameId,
                                                 String actionId,
                                                 int type,
                                                 boolean retrieveFromCache)
                                          throws SystemException
Finds the social equity setting where groupId = ? and classNameId = ? and actionId = ? and type = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
groupId - the group id to search with
classNameId - the class name id to search with
actionId - the action id to search with
type - the type to search with
Returns:
the matching social equity setting, or null if a matching social equity setting could not be found
Throws:
SystemException - if a system exception occurred

findAll

public static List<SocialEquitySetting> findAll()
                                         throws SystemException
Finds all the social equity settings.

Returns:
the social equity settings
Throws:
SystemException - if a system exception occurred

findAll

public static List<SocialEquitySetting> findAll(int start,
                                                int end)
                                         throws SystemException
Finds a range of all the social equity settings.

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 social equity settings to return
end - the upper bound of the range of social equity settings to return (not inclusive)
Returns:
the range of social equity settings
Throws:
SystemException - if a system exception occurred

findAll

public static List<SocialEquitySetting> findAll(int start,
                                                int end,
                                                OrderByComparator orderByComparator)
                                         throws SystemException
Finds an ordered range of all the social equity settings.

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 social equity settings to return
end - the upper bound of the range of social equity settings to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of social equity settings
Throws:
SystemException - if a system exception occurred

removeByG_C_A

public static void removeByG_C_A(long groupId,
                                 long classNameId,
                                 String actionId)
                          throws SystemException
Removes all the social equity settings where groupId = ? and classNameId = ? and actionId = ? from the database.

Parameters:
groupId - the group id to search with
classNameId - the class name id to search with
actionId - the action id to search with
Throws:
SystemException - if a system exception occurred

removeByG_C_A_T

public static void removeByG_C_A_T(long groupId,
                                   long classNameId,
                                   String actionId,
                                   int type)
                            throws SystemException,
                                   NoSuchEquitySettingException
Removes the social equity setting where groupId = ? and classNameId = ? and actionId = ? and type = ? from the database.

Parameters:
groupId - the group id to search with
classNameId - the class name id to search with
actionId - the action id to search with
type - the type to search with
Throws:
SystemException - if a system exception occurred
NoSuchEquitySettingException

removeAll

public static void removeAll()
                      throws SystemException
Removes all the social equity settings from the database.

Throws:
SystemException - if a system exception occurred

countByG_C_A

public static int countByG_C_A(long groupId,
                               long classNameId,
                               String actionId)
                        throws SystemException
Counts all the social equity settings where groupId = ? and classNameId = ? and actionId = ?.

Parameters:
groupId - the group id to search with
classNameId - the class name id to search with
actionId - the action id to search with
Returns:
the number of matching social equity settings
Throws:
SystemException - if a system exception occurred

countByG_C_A_T

public static int countByG_C_A_T(long groupId,
                                 long classNameId,
                                 String actionId,
                                 int type)
                          throws SystemException
Counts all the social equity settings where groupId = ? and classNameId = ? and actionId = ? and type = ?.

Parameters:
groupId - the group id to search with
classNameId - the class name id to search with
actionId - the action id to search with
type - the type to search with
Returns:
the number of matching social equity settings
Throws:
SystemException - if a system exception occurred

countAll

public static int countAll()
                    throws SystemException
Counts all the social equity settings.

Returns:
the number of social equity settings
Throws:
SystemException - if a system exception occurred

getPersistence

public static SocialEquitySettingPersistence getPersistence()

setPersistence

public void setPersistence(SocialEquitySettingPersistence persistence)

Liferay 6.0.5