Liferay 6.0.5

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

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

public class SocialEquityAssetEntryUtil
extends Object

The persistence utility for the social equity asset entry service. This utility wraps SocialEquityAssetEntryPersistenceImpl 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:
SocialEquityAssetEntryPersistence, SocialEquityAssetEntryPersistenceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Constructor Summary
SocialEquityAssetEntryUtil()
           
 
Method Summary
static void cacheResult(List<SocialEquityAssetEntry> socialEquityAssetEntries)
          Caches the social equity asset entries in the entity cache if it is enabled.
static void cacheResult(SocialEquityAssetEntry socialEquityAssetEntry)
          Caches the social equity asset entry in the entity cache if it is enabled.
static void clearCache()
           
static void clearCache(SocialEquityAssetEntry socialEquityAssetEntry)
           
static int countAll()
          Counts all the social equity asset entries.
static int countByAssetEntryId(long assetEntryId)
          Counts all the social equity asset entries where assetEntryId = ?.
 long countWithDynamicQuery(DynamicQuery dynamicQuery)
           
static SocialEquityAssetEntry create(long equityAssetEntryId)
          Creates a new social equity asset entry with the primary key.
static SocialEquityAssetEntry fetchByAssetEntryId(long assetEntryId)
          Finds the social equity asset entry where assetEntryId = ? or returns null if it could not be found.
static SocialEquityAssetEntry fetchByAssetEntryId(long assetEntryId, boolean retrieveFromCache)
          Finds the social equity asset entry where assetEntryId = ? or returns null if it could not be found, optionally using the finder cache.
static SocialEquityAssetEntry fetchByPrimaryKey(long equityAssetEntryId)
          Finds the social equity asset entry with the primary key or returns null if it could not be found.
static List<SocialEquityAssetEntry> findAll()
          Finds all the social equity asset entries.
static List<SocialEquityAssetEntry> findAll(int start, int end)
          Finds a range of all the social equity asset entries.
static List<SocialEquityAssetEntry> findAll(int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the social equity asset entries.
static SocialEquityAssetEntry findByAssetEntryId(long assetEntryId)
          Finds the social equity asset entry where assetEntryId = ? or throws a NoSuchEquityAssetEntryException if it could not be found.
static SocialEquityAssetEntry findByPrimaryKey(long equityAssetEntryId)
          Finds the social equity asset entry with the primary key or throws a NoSuchEquityAssetEntryException if it could not be found.
static List<SocialEquityAssetEntry> findWithDynamicQuery(DynamicQuery dynamicQuery)
           
static List<SocialEquityAssetEntry> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
           
static List<SocialEquityAssetEntry> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
           
static SocialEquityAssetEntryPersistence getPersistence()
           
static SocialEquityAssetEntry remove(long equityAssetEntryId)
          Removes the social equity asset entry with the primary key from the database.
static SocialEquityAssetEntry remove(SocialEquityAssetEntry socialEquityAssetEntry)
           
static void removeAll()
          Removes all the social equity asset entries from the database.
static void removeByAssetEntryId(long assetEntryId)
          Removes the social equity asset entry where assetEntryId = ? from the database.
 void setPersistence(SocialEquityAssetEntryPersistence persistence)
           
static SocialEquityAssetEntry update(SocialEquityAssetEntry socialEquityAssetEntry, boolean merge)
           
static SocialEquityAssetEntry update(SocialEquityAssetEntry socialEquityAssetEntry, boolean merge, ServiceContext serviceContext)
           
static SocialEquityAssetEntry updateImpl(SocialEquityAssetEntry socialEquityAssetEntry, boolean merge)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SocialEquityAssetEntryUtil

public SocialEquityAssetEntryUtil()
Method Detail

clearCache

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

clearCache

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

findWithDynamicQuery

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

findWithDynamicQuery

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

remove

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

update

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

update

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

cacheResult

public static void cacheResult(SocialEquityAssetEntry socialEquityAssetEntry)
Caches the social equity asset entry in the entity cache if it is enabled.

Parameters:
socialEquityAssetEntry - the social equity asset entry to cache

cacheResult

public static void cacheResult(List<SocialEquityAssetEntry> socialEquityAssetEntries)
Caches the social equity asset entries in the entity cache if it is enabled.

Parameters:
socialEquityAssetEntries - the social equity asset entries to cache

create

public static SocialEquityAssetEntry create(long equityAssetEntryId)
Creates a new social equity asset entry with the primary key. Does not add the social equity asset entry to the database.

Parameters:
equityAssetEntryId - the primary key for the new social equity asset entry
Returns:
the new social equity asset entry

remove

public static SocialEquityAssetEntry remove(long equityAssetEntryId)
                                     throws SystemException,
                                            NoSuchEquityAssetEntryException
Removes the social equity asset entry with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
equityAssetEntryId - the primary key of the social equity asset entry to remove
Returns:
the social equity asset entry that was removed
Throws:
NoSuchEquityAssetEntryException - if a social equity asset entry with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

public static SocialEquityAssetEntry updateImpl(SocialEquityAssetEntry socialEquityAssetEntry,
                                                boolean merge)
                                         throws SystemException
Throws:
SystemException

findByPrimaryKey

public static SocialEquityAssetEntry findByPrimaryKey(long equityAssetEntryId)
                                               throws SystemException,
                                                      NoSuchEquityAssetEntryException
Finds the social equity asset entry with the primary key or throws a NoSuchEquityAssetEntryException if it could not be found.

Parameters:
equityAssetEntryId - the primary key of the social equity asset entry to find
Returns:
the social equity asset entry
Throws:
NoSuchEquityAssetEntryException - if a social equity asset entry with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

public static SocialEquityAssetEntry fetchByPrimaryKey(long equityAssetEntryId)
                                                throws SystemException
Finds the social equity asset entry with the primary key or returns null if it could not be found.

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

findByAssetEntryId

public static SocialEquityAssetEntry findByAssetEntryId(long assetEntryId)
                                                 throws SystemException,
                                                        NoSuchEquityAssetEntryException
Finds the social equity asset entry where assetEntryId = ? or throws a NoSuchEquityAssetEntryException if it could not be found.

Parameters:
assetEntryId - the asset entry id to search with
Returns:
the matching social equity asset entry
Throws:
NoSuchEquityAssetEntryException - if a matching social equity asset entry could not be found
SystemException - if a system exception occurred

fetchByAssetEntryId

public static SocialEquityAssetEntry fetchByAssetEntryId(long assetEntryId)
                                                  throws SystemException
Finds the social equity asset entry where assetEntryId = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
assetEntryId - the asset entry id to search with
Returns:
the matching social equity asset entry, or null if a matching social equity asset entry could not be found
Throws:
SystemException - if a system exception occurred

fetchByAssetEntryId

public static SocialEquityAssetEntry fetchByAssetEntryId(long assetEntryId,
                                                         boolean retrieveFromCache)
                                                  throws SystemException
Finds the social equity asset entry where assetEntryId = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
assetEntryId - the asset entry id to search with
Returns:
the matching social equity asset entry, or null if a matching social equity asset entry could not be found
Throws:
SystemException - if a system exception occurred

findAll

public static List<SocialEquityAssetEntry> findAll()
                                            throws SystemException
Finds all the social equity asset entries.

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

findAll

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

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

findAll

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

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

removeByAssetEntryId

public static void removeByAssetEntryId(long assetEntryId)
                                 throws SystemException,
                                        NoSuchEquityAssetEntryException
Removes the social equity asset entry where assetEntryId = ? from the database.

Parameters:
assetEntryId - the asset entry id to search with
Throws:
SystemException - if a system exception occurred
NoSuchEquityAssetEntryException

removeAll

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

Throws:
SystemException - if a system exception occurred

countByAssetEntryId

public static int countByAssetEntryId(long assetEntryId)
                               throws SystemException
Counts all the social equity asset entries where assetEntryId = ?.

Parameters:
assetEntryId - the asset entry id to search with
Returns:
the number of matching social equity asset entries
Throws:
SystemException - if a system exception occurred

countAll

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

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

getPersistence

public static SocialEquityAssetEntryPersistence getPersistence()

setPersistence

public void setPersistence(SocialEquityAssetEntryPersistence persistence)

Liferay 6.0.5