Liferay 6.1.0

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

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

public class SocialEquityHistoryUtil
extends Object

The persistence utility for the social equity history service. This utility wraps SocialEquityHistoryPersistenceImpl 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.

Caching information and settings can be found in portal.properties

See Also:
SocialEquityHistoryPersistence, SocialEquityHistoryPersistenceImpl

Constructor Summary
SocialEquityHistoryUtil()
           
 
Method Summary
static void cacheResult(List<SocialEquityHistory> socialEquityHistories)
          Caches the social equity histories in the entity cache if it is enabled.
static void cacheResult(SocialEquityHistory socialEquityHistory)
          Caches the social equity history in the entity cache if it is enabled.
static void clearCache()
           
static void clearCache(SocialEquityHistory socialEquityHistory)
           
static int countAll()
          Returns the number of social equity histories.
 long countWithDynamicQuery(DynamicQuery dynamicQuery)
           
static SocialEquityHistory create(long equityHistoryId)
          Creates a new social equity history with the primary key.
static SocialEquityHistory fetchByPrimaryKey(long equityHistoryId)
          Returns the social equity history with the primary key or returns null if it could not be found.
static List<SocialEquityHistory> findAll()
          Returns all the social equity histories.
static List<SocialEquityHistory> findAll(int start, int end)
          Returns a range of all the social equity histories.
static List<SocialEquityHistory> findAll(int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the social equity histories.
static SocialEquityHistory findByPrimaryKey(long equityHistoryId)
          Returns the social equity history with the primary key or throws a NoSuchEquityHistoryException if it could not be found.
static List<SocialEquityHistory> findWithDynamicQuery(DynamicQuery dynamicQuery)
           
static List<SocialEquityHistory> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
           
static List<SocialEquityHistory> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
           
static SocialEquityHistoryPersistence getPersistence()
           
static SocialEquityHistory remove(long equityHistoryId)
          Removes the social equity history with the primary key from the database.
static SocialEquityHistory remove(SocialEquityHistory socialEquityHistory)
           
static void removeAll()
          Removes all the social equity histories from the database.
 void setPersistence(SocialEquityHistoryPersistence persistence)
           
static SocialEquityHistory update(SocialEquityHistory socialEquityHistory, boolean merge)
           
static SocialEquityHistory update(SocialEquityHistory socialEquityHistory, boolean merge, ServiceContext serviceContext)
           
static SocialEquityHistory updateImpl(SocialEquityHistory socialEquityHistory, boolean merge)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SocialEquityHistoryUtil

public SocialEquityHistoryUtil()
Method Detail

clearCache

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

clearCache

public static void clearCache(SocialEquityHistory socialEquityHistory)
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<SocialEquityHistory> findWithDynamicQuery(DynamicQuery dynamicQuery)
                                                      throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

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

findWithDynamicQuery

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

remove

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

update

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

update

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

cacheResult

public static void cacheResult(SocialEquityHistory socialEquityHistory)
Caches the social equity history in the entity cache if it is enabled.

Parameters:
socialEquityHistory - the social equity history

cacheResult

public static void cacheResult(List<SocialEquityHistory> socialEquityHistories)
Caches the social equity histories in the entity cache if it is enabled.

Parameters:
socialEquityHistories - the social equity histories

create

public static SocialEquityHistory create(long equityHistoryId)
Creates a new social equity history with the primary key. Does not add the social equity history to the database.

Parameters:
equityHistoryId - the primary key for the new social equity history
Returns:
the new social equity history

remove

public static SocialEquityHistory remove(long equityHistoryId)
                                  throws SystemException,
                                         NoSuchEquityHistoryException
Removes the social equity history with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
equityHistoryId - the primary key of the social equity history
Returns:
the social equity history that was removed
Throws:
NoSuchEquityHistoryException - if a social equity history with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

public static SocialEquityHistory updateImpl(SocialEquityHistory socialEquityHistory,
                                             boolean merge)
                                      throws SystemException
Throws:
SystemException

findByPrimaryKey

public static SocialEquityHistory findByPrimaryKey(long equityHistoryId)
                                            throws SystemException,
                                                   NoSuchEquityHistoryException
Returns the social equity history with the primary key or throws a NoSuchEquityHistoryException if it could not be found.

Parameters:
equityHistoryId - the primary key of the social equity history
Returns:
the social equity history
Throws:
NoSuchEquityHistoryException - if a social equity history with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

public static SocialEquityHistory fetchByPrimaryKey(long equityHistoryId)
                                             throws SystemException
Returns the social equity history with the primary key or returns null if it could not be found.

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

findAll

public static List<SocialEquityHistory> findAll()
                                         throws SystemException
Returns all the social equity histories.

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

findAll

public static List<SocialEquityHistory> findAll(int start,
                                                int end)
                                         throws SystemException
Returns a range of all the social equity histories.

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

findAll

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

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

removeAll

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

Throws:
SystemException - if a system exception occurred

countAll

public static int countAll()
                    throws SystemException
Returns the number of social equity histories.

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

getPersistence

public static SocialEquityHistoryPersistence getPersistence()

setPersistence

public void setPersistence(SocialEquityHistoryPersistence persistence)

Liferay 6.1.0