Liferay 6.1.0

com.liferay.portlet.social.service.persistence
Interface SocialEquityLogPersistence

All Superinterfaces:
BasePersistence<SocialEquityLog>

public interface SocialEquityLogPersistence
extends BasePersistence<SocialEquityLog>

The persistence interface for the social equity log service.

Caching information and settings can be found in portal.properties

See Also:
SocialEquityLogPersistenceImpl, SocialEquityLogUtil

Method Summary
 void cacheResult(List<SocialEquityLog> socialEquityLogs)
          Caches the social equity logs in the entity cache if it is enabled.
 void cacheResult(SocialEquityLog socialEquityLog)
          Caches the social equity log in the entity cache if it is enabled.
 int countAll()
          Returns the number of social equity logs.
 int countByAEI_AID_A_E(long assetEntryId, String actionId, boolean active, String extraData)
          Returns the number of social equity logs where assetEntryId = ? and actionId = ? and active = ? and extraData = ?.
 int countByAEI_AID_AD_A_T_E(long assetEntryId, String actionId, int actionDate, boolean active, int type, String extraData)
          Returns the number of social equity logs where assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.
 int countByAEI_T_A(long assetEntryId, int type, boolean active)
          Returns the number of social equity logs where assetEntryId = ? and type = ? and active = ?.
 int countByU_AEI_AID_A_E(long userId, long assetEntryId, String actionId, boolean active, String extraData)
          Returns the number of social equity logs where userId = ? and assetEntryId = ? and actionId = ? and active = ? and extraData = ?.
 int countByU_AEI_AID_AD_A_T_E(long userId, long assetEntryId, String actionId, int actionDate, boolean active, int type, String extraData)
          Returns the number of social equity logs where userId = ? and assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.
 int countByU_AID_AD_A_T_E(long userId, String actionId, int actionDate, boolean active, int type, String extraData)
          Returns the number of social equity logs where userId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.
 int countByUserId(long userId)
          Returns the number of social equity logs where userId = ?.
 SocialEquityLog create(long equityLogId)
          Creates a new social equity log with the primary key.
 SocialEquityLog fetchByPrimaryKey(long equityLogId)
          Returns the social equity log with the primary key or returns null if it could not be found.
 SocialEquityLog fetchByU_AEI_AID_AD_A_T_E(long userId, long assetEntryId, String actionId, int actionDate, boolean active, int type, String extraData)
          Returns the social equity log where userId = ? and assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ? or returns null if it could not be found.
 SocialEquityLog fetchByU_AEI_AID_AD_A_T_E(long userId, long assetEntryId, String actionId, int actionDate, boolean active, int type, String extraData, boolean retrieveFromCache)
          Returns the social equity log where userId = ? and assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ? or returns null if it could not be found, optionally using the finder cache.
 List<SocialEquityLog> findAll()
          Returns all the social equity logs.
 List<SocialEquityLog> findAll(int start, int end)
          Returns a range of all the social equity logs.
 List<SocialEquityLog> findAll(int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the social equity logs.
 SocialEquityLog findByAEI_AID_A_E_First(long assetEntryId, String actionId, boolean active, String extraData, OrderByComparator orderByComparator)
          Returns the first social equity log in the ordered set where assetEntryId = ? and actionId = ? and active = ? and extraData = ?.
 SocialEquityLog findByAEI_AID_A_E_Last(long assetEntryId, String actionId, boolean active, String extraData, OrderByComparator orderByComparator)
          Returns the last social equity log in the ordered set where assetEntryId = ? and actionId = ? and active = ? and extraData = ?.
 SocialEquityLog[] findByAEI_AID_A_E_PrevAndNext(long equityLogId, long assetEntryId, String actionId, boolean active, String extraData, OrderByComparator orderByComparator)
          Returns the social equity logs before and after the current social equity log in the ordered set where assetEntryId = ? and actionId = ? and active = ? and extraData = ?.
 List<SocialEquityLog> findByAEI_AID_A_E(long assetEntryId, String actionId, boolean active, String extraData)
          Returns all the social equity logs where assetEntryId = ? and actionId = ? and active = ? and extraData = ?.
 List<SocialEquityLog> findByAEI_AID_A_E(long assetEntryId, String actionId, boolean active, String extraData, int start, int end)
          Returns a range of all the social equity logs where assetEntryId = ? and actionId = ? and active = ? and extraData = ?.
 List<SocialEquityLog> findByAEI_AID_A_E(long assetEntryId, String actionId, boolean active, String extraData, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the social equity logs where assetEntryId = ? and actionId = ? and active = ? and extraData = ?.
 SocialEquityLog findByAEI_AID_AD_A_T_E_First(long assetEntryId, String actionId, int actionDate, boolean active, int type, String extraData, OrderByComparator orderByComparator)
          Returns the first social equity log in the ordered set where assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.
 SocialEquityLog findByAEI_AID_AD_A_T_E_Last(long assetEntryId, String actionId, int actionDate, boolean active, int type, String extraData, OrderByComparator orderByComparator)
          Returns the last social equity log in the ordered set where assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.
 SocialEquityLog[] findByAEI_AID_AD_A_T_E_PrevAndNext(long equityLogId, long assetEntryId, String actionId, int actionDate, boolean active, int type, String extraData, OrderByComparator orderByComparator)
          Returns the social equity logs before and after the current social equity log in the ordered set where assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.
 List<SocialEquityLog> findByAEI_AID_AD_A_T_E(long assetEntryId, String actionId, int actionDate, boolean active, int type, String extraData)
          Returns all the social equity logs where assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.
 List<SocialEquityLog> findByAEI_AID_AD_A_T_E(long assetEntryId, String actionId, int actionDate, boolean active, int type, String extraData, int start, int end)
          Returns a range of all the social equity logs where assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.
 List<SocialEquityLog> findByAEI_AID_AD_A_T_E(long assetEntryId, String actionId, int actionDate, boolean active, int type, String extraData, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the social equity logs where assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.
 SocialEquityLog findByAEI_T_A_First(long assetEntryId, int type, boolean active, OrderByComparator orderByComparator)
          Returns the first social equity log in the ordered set where assetEntryId = ? and type = ? and active = ?.
 SocialEquityLog findByAEI_T_A_Last(long assetEntryId, int type, boolean active, OrderByComparator orderByComparator)
          Returns the last social equity log in the ordered set where assetEntryId = ? and type = ? and active = ?.
 SocialEquityLog[] findByAEI_T_A_PrevAndNext(long equityLogId, long assetEntryId, int type, boolean active, OrderByComparator orderByComparator)
          Returns the social equity logs before and after the current social equity log in the ordered set where assetEntryId = ? and type = ? and active = ?.
 List<SocialEquityLog> findByAEI_T_A(long assetEntryId, int type, boolean active)
          Returns all the social equity logs where assetEntryId = ? and type = ? and active = ?.
 List<SocialEquityLog> findByAEI_T_A(long assetEntryId, int type, boolean active, int start, int end)
          Returns a range of all the social equity logs where assetEntryId = ? and type = ? and active = ?.
 List<SocialEquityLog> findByAEI_T_A(long assetEntryId, int type, boolean active, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the social equity logs where assetEntryId = ? and type = ? and active = ?.
 SocialEquityLog findByPrimaryKey(long equityLogId)
          Returns the social equity log with the primary key or throws a NoSuchEquityLogException if it could not be found.
 SocialEquityLog findByU_AEI_AID_A_E_First(long userId, long assetEntryId, String actionId, boolean active, String extraData, OrderByComparator orderByComparator)
          Returns the first social equity log in the ordered set where userId = ? and assetEntryId = ? and actionId = ? and active = ? and extraData = ?.
 SocialEquityLog findByU_AEI_AID_A_E_Last(long userId, long assetEntryId, String actionId, boolean active, String extraData, OrderByComparator orderByComparator)
          Returns the last social equity log in the ordered set where userId = ? and assetEntryId = ? and actionId = ? and active = ? and extraData = ?.
 SocialEquityLog[] findByU_AEI_AID_A_E_PrevAndNext(long equityLogId, long userId, long assetEntryId, String actionId, boolean active, String extraData, OrderByComparator orderByComparator)
          Returns the social equity logs before and after the current social equity log in the ordered set where userId = ? and assetEntryId = ? and actionId = ? and active = ? and extraData = ?.
 List<SocialEquityLog> findByU_AEI_AID_A_E(long userId, long assetEntryId, String actionId, boolean active, String extraData)
          Returns all the social equity logs where userId = ? and assetEntryId = ? and actionId = ? and active = ? and extraData = ?.
 List<SocialEquityLog> findByU_AEI_AID_A_E(long userId, long assetEntryId, String actionId, boolean active, String extraData, int start, int end)
          Returns a range of all the social equity logs where userId = ? and assetEntryId = ? and actionId = ? and active = ? and extraData = ?.
 List<SocialEquityLog> findByU_AEI_AID_A_E(long userId, long assetEntryId, String actionId, boolean active, String extraData, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the social equity logs where userId = ? and assetEntryId = ? and actionId = ? and active = ? and extraData = ?.
 SocialEquityLog findByU_AEI_AID_AD_A_T_E(long userId, long assetEntryId, String actionId, int actionDate, boolean active, int type, String extraData)
          Returns the social equity log where userId = ? and assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ? or throws a NoSuchEquityLogException if it could not be found.
 SocialEquityLog findByU_AID_AD_A_T_E_First(long userId, String actionId, int actionDate, boolean active, int type, String extraData, OrderByComparator orderByComparator)
          Returns the first social equity log in the ordered set where userId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.
 SocialEquityLog findByU_AID_AD_A_T_E_Last(long userId, String actionId, int actionDate, boolean active, int type, String extraData, OrderByComparator orderByComparator)
          Returns the last social equity log in the ordered set where userId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.
 SocialEquityLog[] findByU_AID_AD_A_T_E_PrevAndNext(long equityLogId, long userId, String actionId, int actionDate, boolean active, int type, String extraData, OrderByComparator orderByComparator)
          Returns the social equity logs before and after the current social equity log in the ordered set where userId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.
 List<SocialEquityLog> findByU_AID_AD_A_T_E(long userId, String actionId, int actionDate, boolean active, int type, String extraData)
          Returns all the social equity logs where userId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.
 List<SocialEquityLog> findByU_AID_AD_A_T_E(long userId, String actionId, int actionDate, boolean active, int type, String extraData, int start, int end)
          Returns a range of all the social equity logs where userId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.
 List<SocialEquityLog> findByU_AID_AD_A_T_E(long userId, String actionId, int actionDate, boolean active, int type, String extraData, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the social equity logs where userId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.
 SocialEquityLog findByUserId_First(long userId, OrderByComparator orderByComparator)
          Returns the first social equity log in the ordered set where userId = ?.
 SocialEquityLog findByUserId_Last(long userId, OrderByComparator orderByComparator)
          Returns the last social equity log in the ordered set where userId = ?.
 SocialEquityLog[] findByUserId_PrevAndNext(long equityLogId, long userId, OrderByComparator orderByComparator)
          Returns the social equity logs before and after the current social equity log in the ordered set where userId = ?.
 List<SocialEquityLog> findByUserId(long userId)
          Returns all the social equity logs where userId = ?.
 List<SocialEquityLog> findByUserId(long userId, int start, int end)
          Returns a range of all the social equity logs where userId = ?.
 List<SocialEquityLog> findByUserId(long userId, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the social equity logs where userId = ?.
 SocialEquityLog remove(long equityLogId)
          Removes the social equity log with the primary key from the database.
 SocialEquityLog remove(SocialEquityLog socialEquityLog)
          Removes the model instance from the database.
 void removeAll()
          Removes all the social equity logs from the database.
 void removeByAEI_AID_A_E(long assetEntryId, String actionId, boolean active, String extraData)
          Removes all the social equity logs where assetEntryId = ? and actionId = ? and active = ? and extraData = ? from the database.
 void removeByAEI_AID_AD_A_T_E(long assetEntryId, String actionId, int actionDate, boolean active, int type, String extraData)
          Removes all the social equity logs where assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ? from the database.
 void removeByAEI_T_A(long assetEntryId, int type, boolean active)
          Removes all the social equity logs where assetEntryId = ? and type = ? and active = ? from the database.
 void removeByU_AEI_AID_A_E(long userId, long assetEntryId, String actionId, boolean active, String extraData)
          Removes all the social equity logs where userId = ? and assetEntryId = ? and actionId = ? and active = ? and extraData = ? from the database.
 void removeByU_AEI_AID_AD_A_T_E(long userId, long assetEntryId, String actionId, int actionDate, boolean active, int type, String extraData)
          Removes the social equity log where userId = ? and assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ? from the database.
 void removeByU_AID_AD_A_T_E(long userId, String actionId, int actionDate, boolean active, int type, String extraData)
          Removes all the social equity logs where userId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ? from the database.
 void removeByUserId(long userId)
          Removes all the social equity logs where userId = ? from the database.
 SocialEquityLog updateImpl(SocialEquityLog socialEquityLog, boolean merge)
           
 
Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence
clearCache, clearCache, closeSession, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, getDataSource, getListeners, openSession, processException, registerListener, remove, setDataSource, unregisterListener, update, update
 

Method Detail

cacheResult

void cacheResult(SocialEquityLog socialEquityLog)
Caches the social equity log in the entity cache if it is enabled.

Parameters:
socialEquityLog - the social equity log

cacheResult

void cacheResult(List<SocialEquityLog> socialEquityLogs)
Caches the social equity logs in the entity cache if it is enabled.

Parameters:
socialEquityLogs - the social equity logs

create

SocialEquityLog create(long equityLogId)
Creates a new social equity log with the primary key. Does not add the social equity log to the database.

Parameters:
equityLogId - the primary key for the new social equity log
Returns:
the new social equity log

remove

SocialEquityLog remove(long equityLogId)
                       throws SystemException,
                              NoSuchEquityLogException
Removes the social equity log with the primary key from the database. Also notifies the appropriate model listeners.

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

updateImpl

SocialEquityLog updateImpl(SocialEquityLog socialEquityLog,
                           boolean merge)
                           throws SystemException
Throws:
SystemException

findByPrimaryKey

SocialEquityLog findByPrimaryKey(long equityLogId)
                                 throws SystemException,
                                        NoSuchEquityLogException
Returns the social equity log with the primary key or throws a NoSuchEquityLogException if it could not be found.

Parameters:
equityLogId - the primary key of the social equity log
Returns:
the social equity log
Throws:
NoSuchEquityLogException - if a social equity log with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

SocialEquityLog fetchByPrimaryKey(long equityLogId)
                                  throws SystemException
Returns the social equity log with the primary key or returns null if it could not be found.

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

findByUserId

List<SocialEquityLog> findByUserId(long userId)
                                   throws SystemException
Returns all the social equity logs where userId = ?.

Parameters:
userId - the user ID
Returns:
the matching social equity logs
Throws:
SystemException - if a system exception occurred

findByUserId

List<SocialEquityLog> findByUserId(long userId,
                                   int start,
                                   int end)
                                   throws SystemException
Returns a range of all the social equity logs where userId = ?.

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:
userId - the user ID
start - the lower bound of the range of social equity logs
end - the upper bound of the range of social equity logs (not inclusive)
Returns:
the range of matching social equity logs
Throws:
SystemException - if a system exception occurred

findByUserId

List<SocialEquityLog> findByUserId(long userId,
                                   int start,
                                   int end,
                                   OrderByComparator orderByComparator)
                                   throws SystemException
Returns an ordered range of all the social equity logs where userId = ?.

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

findByUserId_First

SocialEquityLog findByUserId_First(long userId,
                                   OrderByComparator orderByComparator)
                                   throws SystemException,
                                          NoSuchEquityLogException
Returns the first social equity log in the ordered set where userId = ?.

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:
userId - the user ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching social equity log
Throws:
NoSuchEquityLogException - if a matching social equity log could not be found
SystemException - if a system exception occurred

findByUserId_Last

SocialEquityLog findByUserId_Last(long userId,
                                  OrderByComparator orderByComparator)
                                  throws SystemException,
                                         NoSuchEquityLogException
Returns the last social equity log in the ordered set where userId = ?.

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:
userId - the user ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching social equity log
Throws:
NoSuchEquityLogException - if a matching social equity log could not be found
SystemException - if a system exception occurred

findByUserId_PrevAndNext

SocialEquityLog[] findByUserId_PrevAndNext(long equityLogId,
                                           long userId,
                                           OrderByComparator orderByComparator)
                                           throws SystemException,
                                                  NoSuchEquityLogException
Returns the social equity logs before and after the current social equity log in the ordered set where userId = ?.

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:
equityLogId - the primary key of the current social equity log
userId - the user ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next social equity log
Throws:
NoSuchEquityLogException - if a social equity log with the primary key could not be found
SystemException - if a system exception occurred

findByAEI_T_A

List<SocialEquityLog> findByAEI_T_A(long assetEntryId,
                                    int type,
                                    boolean active)
                                    throws SystemException
Returns all the social equity logs where assetEntryId = ? and type = ? and active = ?.

Parameters:
assetEntryId - the asset entry ID
type - the type
active - the active
Returns:
the matching social equity logs
Throws:
SystemException - if a system exception occurred

findByAEI_T_A

List<SocialEquityLog> findByAEI_T_A(long assetEntryId,
                                    int type,
                                    boolean active,
                                    int start,
                                    int end)
                                    throws SystemException
Returns a range of all the social equity logs where assetEntryId = ? and type = ? and active = ?.

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:
assetEntryId - the asset entry ID
type - the type
active - the active
start - the lower bound of the range of social equity logs
end - the upper bound of the range of social equity logs (not inclusive)
Returns:
the range of matching social equity logs
Throws:
SystemException - if a system exception occurred

findByAEI_T_A

List<SocialEquityLog> findByAEI_T_A(long assetEntryId,
                                    int type,
                                    boolean active,
                                    int start,
                                    int end,
                                    OrderByComparator orderByComparator)
                                    throws SystemException
Returns an ordered range of all the social equity logs where assetEntryId = ? and type = ? and active = ?.

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:
assetEntryId - the asset entry ID
type - the type
active - the active
start - the lower bound of the range of social equity logs
end - the upper bound of the range of social equity logs (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching social equity logs
Throws:
SystemException - if a system exception occurred

findByAEI_T_A_First

SocialEquityLog findByAEI_T_A_First(long assetEntryId,
                                    int type,
                                    boolean active,
                                    OrderByComparator orderByComparator)
                                    throws SystemException,
                                           NoSuchEquityLogException
Returns the first social equity log in the ordered set where assetEntryId = ? and type = ? and active = ?.

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:
assetEntryId - the asset entry ID
type - the type
active - the active
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching social equity log
Throws:
NoSuchEquityLogException - if a matching social equity log could not be found
SystemException - if a system exception occurred

findByAEI_T_A_Last

SocialEquityLog findByAEI_T_A_Last(long assetEntryId,
                                   int type,
                                   boolean active,
                                   OrderByComparator orderByComparator)
                                   throws SystemException,
                                          NoSuchEquityLogException
Returns the last social equity log in the ordered set where assetEntryId = ? and type = ? and active = ?.

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:
assetEntryId - the asset entry ID
type - the type
active - the active
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching social equity log
Throws:
NoSuchEquityLogException - if a matching social equity log could not be found
SystemException - if a system exception occurred

findByAEI_T_A_PrevAndNext

SocialEquityLog[] findByAEI_T_A_PrevAndNext(long equityLogId,
                                            long assetEntryId,
                                            int type,
                                            boolean active,
                                            OrderByComparator orderByComparator)
                                            throws SystemException,
                                                   NoSuchEquityLogException
Returns the social equity logs before and after the current social equity log in the ordered set where assetEntryId = ? and type = ? and active = ?.

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:
equityLogId - the primary key of the current social equity log
assetEntryId - the asset entry ID
type - the type
active - the active
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next social equity log
Throws:
NoSuchEquityLogException - if a social equity log with the primary key could not be found
SystemException - if a system exception occurred

findByAEI_AID_A_E

List<SocialEquityLog> findByAEI_AID_A_E(long assetEntryId,
                                        String actionId,
                                        boolean active,
                                        String extraData)
                                        throws SystemException
Returns all the social equity logs where assetEntryId = ? and actionId = ? and active = ? and extraData = ?.

Parameters:
assetEntryId - the asset entry ID
actionId - the action ID
active - the active
extraData - the extra data
Returns:
the matching social equity logs
Throws:
SystemException - if a system exception occurred

findByAEI_AID_A_E

List<SocialEquityLog> findByAEI_AID_A_E(long assetEntryId,
                                        String actionId,
                                        boolean active,
                                        String extraData,
                                        int start,
                                        int end)
                                        throws SystemException
Returns a range of all the social equity logs where assetEntryId = ? and actionId = ? and active = ? and extraData = ?.

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:
assetEntryId - the asset entry ID
actionId - the action ID
active - the active
extraData - the extra data
start - the lower bound of the range of social equity logs
end - the upper bound of the range of social equity logs (not inclusive)
Returns:
the range of matching social equity logs
Throws:
SystemException - if a system exception occurred

findByAEI_AID_A_E

List<SocialEquityLog> findByAEI_AID_A_E(long assetEntryId,
                                        String actionId,
                                        boolean active,
                                        String extraData,
                                        int start,
                                        int end,
                                        OrderByComparator orderByComparator)
                                        throws SystemException
Returns an ordered range of all the social equity logs where assetEntryId = ? and actionId = ? and active = ? and extraData = ?.

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:
assetEntryId - the asset entry ID
actionId - the action ID
active - the active
extraData - the extra data
start - the lower bound of the range of social equity logs
end - the upper bound of the range of social equity logs (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching social equity logs
Throws:
SystemException - if a system exception occurred

findByAEI_AID_A_E_First

SocialEquityLog findByAEI_AID_A_E_First(long assetEntryId,
                                        String actionId,
                                        boolean active,
                                        String extraData,
                                        OrderByComparator orderByComparator)
                                        throws SystemException,
                                               NoSuchEquityLogException
Returns the first social equity log in the ordered set where assetEntryId = ? and actionId = ? and active = ? and extraData = ?.

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:
assetEntryId - the asset entry ID
actionId - the action ID
active - the active
extraData - the extra data
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching social equity log
Throws:
NoSuchEquityLogException - if a matching social equity log could not be found
SystemException - if a system exception occurred

findByAEI_AID_A_E_Last

SocialEquityLog findByAEI_AID_A_E_Last(long assetEntryId,
                                       String actionId,
                                       boolean active,
                                       String extraData,
                                       OrderByComparator orderByComparator)
                                       throws SystemException,
                                              NoSuchEquityLogException
Returns the last social equity log in the ordered set where assetEntryId = ? and actionId = ? and active = ? and extraData = ?.

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:
assetEntryId - the asset entry ID
actionId - the action ID
active - the active
extraData - the extra data
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching social equity log
Throws:
NoSuchEquityLogException - if a matching social equity log could not be found
SystemException - if a system exception occurred

findByAEI_AID_A_E_PrevAndNext

SocialEquityLog[] findByAEI_AID_A_E_PrevAndNext(long equityLogId,
                                                long assetEntryId,
                                                String actionId,
                                                boolean active,
                                                String extraData,
                                                OrderByComparator orderByComparator)
                                                throws SystemException,
                                                       NoSuchEquityLogException
Returns the social equity logs before and after the current social equity log in the ordered set where assetEntryId = ? and actionId = ? and active = ? and extraData = ?.

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:
equityLogId - the primary key of the current social equity log
assetEntryId - the asset entry ID
actionId - the action ID
active - the active
extraData - the extra data
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next social equity log
Throws:
NoSuchEquityLogException - if a social equity log with the primary key could not be found
SystemException - if a system exception occurred

findByU_AEI_AID_A_E

List<SocialEquityLog> findByU_AEI_AID_A_E(long userId,
                                          long assetEntryId,
                                          String actionId,
                                          boolean active,
                                          String extraData)
                                          throws SystemException
Returns all the social equity logs where userId = ? and assetEntryId = ? and actionId = ? and active = ? and extraData = ?.

Parameters:
userId - the user ID
assetEntryId - the asset entry ID
actionId - the action ID
active - the active
extraData - the extra data
Returns:
the matching social equity logs
Throws:
SystemException - if a system exception occurred

findByU_AEI_AID_A_E

List<SocialEquityLog> findByU_AEI_AID_A_E(long userId,
                                          long assetEntryId,
                                          String actionId,
                                          boolean active,
                                          String extraData,
                                          int start,
                                          int end)
                                          throws SystemException
Returns a range of all the social equity logs where userId = ? and assetEntryId = ? and actionId = ? and active = ? and extraData = ?.

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:
userId - the user ID
assetEntryId - the asset entry ID
actionId - the action ID
active - the active
extraData - the extra data
start - the lower bound of the range of social equity logs
end - the upper bound of the range of social equity logs (not inclusive)
Returns:
the range of matching social equity logs
Throws:
SystemException - if a system exception occurred

findByU_AEI_AID_A_E

List<SocialEquityLog> findByU_AEI_AID_A_E(long userId,
                                          long assetEntryId,
                                          String actionId,
                                          boolean active,
                                          String extraData,
                                          int start,
                                          int end,
                                          OrderByComparator orderByComparator)
                                          throws SystemException
Returns an ordered range of all the social equity logs where userId = ? and assetEntryId = ? and actionId = ? and active = ? and extraData = ?.

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:
userId - the user ID
assetEntryId - the asset entry ID
actionId - the action ID
active - the active
extraData - the extra data
start - the lower bound of the range of social equity logs
end - the upper bound of the range of social equity logs (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching social equity logs
Throws:
SystemException - if a system exception occurred

findByU_AEI_AID_A_E_First

SocialEquityLog findByU_AEI_AID_A_E_First(long userId,
                                          long assetEntryId,
                                          String actionId,
                                          boolean active,
                                          String extraData,
                                          OrderByComparator orderByComparator)
                                          throws SystemException,
                                                 NoSuchEquityLogException
Returns the first social equity log in the ordered set where userId = ? and assetEntryId = ? and actionId = ? and active = ? and extraData = ?.

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:
userId - the user ID
assetEntryId - the asset entry ID
actionId - the action ID
active - the active
extraData - the extra data
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching social equity log
Throws:
NoSuchEquityLogException - if a matching social equity log could not be found
SystemException - if a system exception occurred

findByU_AEI_AID_A_E_Last

SocialEquityLog findByU_AEI_AID_A_E_Last(long userId,
                                         long assetEntryId,
                                         String actionId,
                                         boolean active,
                                         String extraData,
                                         OrderByComparator orderByComparator)
                                         throws SystemException,
                                                NoSuchEquityLogException
Returns the last social equity log in the ordered set where userId = ? and assetEntryId = ? and actionId = ? and active = ? and extraData = ?.

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:
userId - the user ID
assetEntryId - the asset entry ID
actionId - the action ID
active - the active
extraData - the extra data
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching social equity log
Throws:
NoSuchEquityLogException - if a matching social equity log could not be found
SystemException - if a system exception occurred

findByU_AEI_AID_A_E_PrevAndNext

SocialEquityLog[] findByU_AEI_AID_A_E_PrevAndNext(long equityLogId,
                                                  long userId,
                                                  long assetEntryId,
                                                  String actionId,
                                                  boolean active,
                                                  String extraData,
                                                  OrderByComparator orderByComparator)
                                                  throws SystemException,
                                                         NoSuchEquityLogException
Returns the social equity logs before and after the current social equity log in the ordered set where userId = ? and assetEntryId = ? and actionId = ? and active = ? and extraData = ?.

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:
equityLogId - the primary key of the current social equity log
userId - the user ID
assetEntryId - the asset entry ID
actionId - the action ID
active - the active
extraData - the extra data
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next social equity log
Throws:
NoSuchEquityLogException - if a social equity log with the primary key could not be found
SystemException - if a system exception occurred

findByU_AID_AD_A_T_E

List<SocialEquityLog> findByU_AID_AD_A_T_E(long userId,
                                           String actionId,
                                           int actionDate,
                                           boolean active,
                                           int type,
                                           String extraData)
                                           throws SystemException
Returns all the social equity logs where userId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.

Parameters:
userId - the user ID
actionId - the action ID
actionDate - the action date
active - the active
type - the type
extraData - the extra data
Returns:
the matching social equity logs
Throws:
SystemException - if a system exception occurred

findByU_AID_AD_A_T_E

List<SocialEquityLog> findByU_AID_AD_A_T_E(long userId,
                                           String actionId,
                                           int actionDate,
                                           boolean active,
                                           int type,
                                           String extraData,
                                           int start,
                                           int end)
                                           throws SystemException
Returns a range of all the social equity logs where userId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.

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:
userId - the user ID
actionId - the action ID
actionDate - the action date
active - the active
type - the type
extraData - the extra data
start - the lower bound of the range of social equity logs
end - the upper bound of the range of social equity logs (not inclusive)
Returns:
the range of matching social equity logs
Throws:
SystemException - if a system exception occurred

findByU_AID_AD_A_T_E

List<SocialEquityLog> findByU_AID_AD_A_T_E(long userId,
                                           String actionId,
                                           int actionDate,
                                           boolean active,
                                           int type,
                                           String extraData,
                                           int start,
                                           int end,
                                           OrderByComparator orderByComparator)
                                           throws SystemException
Returns an ordered range of all the social equity logs where userId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.

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:
userId - the user ID
actionId - the action ID
actionDate - the action date
active - the active
type - the type
extraData - the extra data
start - the lower bound of the range of social equity logs
end - the upper bound of the range of social equity logs (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching social equity logs
Throws:
SystemException - if a system exception occurred

findByU_AID_AD_A_T_E_First

SocialEquityLog findByU_AID_AD_A_T_E_First(long userId,
                                           String actionId,
                                           int actionDate,
                                           boolean active,
                                           int type,
                                           String extraData,
                                           OrderByComparator orderByComparator)
                                           throws SystemException,
                                                  NoSuchEquityLogException
Returns the first social equity log in the ordered set where userId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.

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:
userId - the user ID
actionId - the action ID
actionDate - the action date
active - the active
type - the type
extraData - the extra data
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching social equity log
Throws:
NoSuchEquityLogException - if a matching social equity log could not be found
SystemException - if a system exception occurred

findByU_AID_AD_A_T_E_Last

SocialEquityLog findByU_AID_AD_A_T_E_Last(long userId,
                                          String actionId,
                                          int actionDate,
                                          boolean active,
                                          int type,
                                          String extraData,
                                          OrderByComparator orderByComparator)
                                          throws SystemException,
                                                 NoSuchEquityLogException
Returns the last social equity log in the ordered set where userId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.

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:
userId - the user ID
actionId - the action ID
actionDate - the action date
active - the active
type - the type
extraData - the extra data
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching social equity log
Throws:
NoSuchEquityLogException - if a matching social equity log could not be found
SystemException - if a system exception occurred

findByU_AID_AD_A_T_E_PrevAndNext

SocialEquityLog[] findByU_AID_AD_A_T_E_PrevAndNext(long equityLogId,
                                                   long userId,
                                                   String actionId,
                                                   int actionDate,
                                                   boolean active,
                                                   int type,
                                                   String extraData,
                                                   OrderByComparator orderByComparator)
                                                   throws SystemException,
                                                          NoSuchEquityLogException
Returns the social equity logs before and after the current social equity log in the ordered set where userId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.

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:
equityLogId - the primary key of the current social equity log
userId - the user ID
actionId - the action ID
actionDate - the action date
active - the active
type - the type
extraData - the extra data
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next social equity log
Throws:
NoSuchEquityLogException - if a social equity log with the primary key could not be found
SystemException - if a system exception occurred

findByAEI_AID_AD_A_T_E

List<SocialEquityLog> findByAEI_AID_AD_A_T_E(long assetEntryId,
                                             String actionId,
                                             int actionDate,
                                             boolean active,
                                             int type,
                                             String extraData)
                                             throws SystemException
Returns all the social equity logs where assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.

Parameters:
assetEntryId - the asset entry ID
actionId - the action ID
actionDate - the action date
active - the active
type - the type
extraData - the extra data
Returns:
the matching social equity logs
Throws:
SystemException - if a system exception occurred

findByAEI_AID_AD_A_T_E

List<SocialEquityLog> findByAEI_AID_AD_A_T_E(long assetEntryId,
                                             String actionId,
                                             int actionDate,
                                             boolean active,
                                             int type,
                                             String extraData,
                                             int start,
                                             int end)
                                             throws SystemException
Returns a range of all the social equity logs where assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.

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:
assetEntryId - the asset entry ID
actionId - the action ID
actionDate - the action date
active - the active
type - the type
extraData - the extra data
start - the lower bound of the range of social equity logs
end - the upper bound of the range of social equity logs (not inclusive)
Returns:
the range of matching social equity logs
Throws:
SystemException - if a system exception occurred

findByAEI_AID_AD_A_T_E

List<SocialEquityLog> findByAEI_AID_AD_A_T_E(long assetEntryId,
                                             String actionId,
                                             int actionDate,
                                             boolean active,
                                             int type,
                                             String extraData,
                                             int start,
                                             int end,
                                             OrderByComparator orderByComparator)
                                             throws SystemException
Returns an ordered range of all the social equity logs where assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.

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:
assetEntryId - the asset entry ID
actionId - the action ID
actionDate - the action date
active - the active
type - the type
extraData - the extra data
start - the lower bound of the range of social equity logs
end - the upper bound of the range of social equity logs (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching social equity logs
Throws:
SystemException - if a system exception occurred

findByAEI_AID_AD_A_T_E_First

SocialEquityLog findByAEI_AID_AD_A_T_E_First(long assetEntryId,
                                             String actionId,
                                             int actionDate,
                                             boolean active,
                                             int type,
                                             String extraData,
                                             OrderByComparator orderByComparator)
                                             throws SystemException,
                                                    NoSuchEquityLogException
Returns the first social equity log in the ordered set where assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.

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:
assetEntryId - the asset entry ID
actionId - the action ID
actionDate - the action date
active - the active
type - the type
extraData - the extra data
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching social equity log
Throws:
NoSuchEquityLogException - if a matching social equity log could not be found
SystemException - if a system exception occurred

findByAEI_AID_AD_A_T_E_Last

SocialEquityLog findByAEI_AID_AD_A_T_E_Last(long assetEntryId,
                                            String actionId,
                                            int actionDate,
                                            boolean active,
                                            int type,
                                            String extraData,
                                            OrderByComparator orderByComparator)
                                            throws SystemException,
                                                   NoSuchEquityLogException
Returns the last social equity log in the ordered set where assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.

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:
assetEntryId - the asset entry ID
actionId - the action ID
actionDate - the action date
active - the active
type - the type
extraData - the extra data
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching social equity log
Throws:
NoSuchEquityLogException - if a matching social equity log could not be found
SystemException - if a system exception occurred

findByAEI_AID_AD_A_T_E_PrevAndNext

SocialEquityLog[] findByAEI_AID_AD_A_T_E_PrevAndNext(long equityLogId,
                                                     long assetEntryId,
                                                     String actionId,
                                                     int actionDate,
                                                     boolean active,
                                                     int type,
                                                     String extraData,
                                                     OrderByComparator orderByComparator)
                                                     throws SystemException,
                                                            NoSuchEquityLogException
Returns the social equity logs before and after the current social equity log in the ordered set where assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.

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:
equityLogId - the primary key of the current social equity log
assetEntryId - the asset entry ID
actionId - the action ID
actionDate - the action date
active - the active
type - the type
extraData - the extra data
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next social equity log
Throws:
NoSuchEquityLogException - if a social equity log with the primary key could not be found
SystemException - if a system exception occurred

findByU_AEI_AID_AD_A_T_E

SocialEquityLog findByU_AEI_AID_AD_A_T_E(long userId,
                                         long assetEntryId,
                                         String actionId,
                                         int actionDate,
                                         boolean active,
                                         int type,
                                         String extraData)
                                         throws SystemException,
                                                NoSuchEquityLogException
Returns the social equity log where userId = ? and assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ? or throws a NoSuchEquityLogException if it could not be found.

Parameters:
userId - the user ID
assetEntryId - the asset entry ID
actionId - the action ID
actionDate - the action date
active - the active
type - the type
extraData - the extra data
Returns:
the matching social equity log
Throws:
NoSuchEquityLogException - if a matching social equity log could not be found
SystemException - if a system exception occurred

fetchByU_AEI_AID_AD_A_T_E

SocialEquityLog fetchByU_AEI_AID_AD_A_T_E(long userId,
                                          long assetEntryId,
                                          String actionId,
                                          int actionDate,
                                          boolean active,
                                          int type,
                                          String extraData)
                                          throws SystemException
Returns the social equity log where userId = ? and assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
userId - the user ID
assetEntryId - the asset entry ID
actionId - the action ID
actionDate - the action date
active - the active
type - the type
extraData - the extra data
Returns:
the matching social equity log, or null if a matching social equity log could not be found
Throws:
SystemException - if a system exception occurred

fetchByU_AEI_AID_AD_A_T_E

SocialEquityLog fetchByU_AEI_AID_AD_A_T_E(long userId,
                                          long assetEntryId,
                                          String actionId,
                                          int actionDate,
                                          boolean active,
                                          int type,
                                          String extraData,
                                          boolean retrieveFromCache)
                                          throws SystemException
Returns the social equity log where userId = ? and assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
userId - the user ID
assetEntryId - the asset entry ID
actionId - the action ID
actionDate - the action date
active - the active
type - the type
extraData - the extra data
retrieveFromCache - whether to use the finder cache
Returns:
the matching social equity log, or null if a matching social equity log could not be found
Throws:
SystemException - if a system exception occurred

findAll

List<SocialEquityLog> findAll()
                              throws SystemException
Returns all the social equity logs.

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

findAll

List<SocialEquityLog> findAll(int start,
                              int end)
                              throws SystemException
Returns a range of all the social equity logs.

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

findAll

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

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

removeByUserId

void removeByUserId(long userId)
                    throws SystemException
Removes all the social equity logs where userId = ? from the database.

Parameters:
userId - the user ID
Throws:
SystemException - if a system exception occurred

removeByAEI_T_A

void removeByAEI_T_A(long assetEntryId,
                     int type,
                     boolean active)
                     throws SystemException
Removes all the social equity logs where assetEntryId = ? and type = ? and active = ? from the database.

Parameters:
assetEntryId - the asset entry ID
type - the type
active - the active
Throws:
SystemException - if a system exception occurred

removeByAEI_AID_A_E

void removeByAEI_AID_A_E(long assetEntryId,
                         String actionId,
                         boolean active,
                         String extraData)
                         throws SystemException
Removes all the social equity logs where assetEntryId = ? and actionId = ? and active = ? and extraData = ? from the database.

Parameters:
assetEntryId - the asset entry ID
actionId - the action ID
active - the active
extraData - the extra data
Throws:
SystemException - if a system exception occurred

removeByU_AEI_AID_A_E

void removeByU_AEI_AID_A_E(long userId,
                           long assetEntryId,
                           String actionId,
                           boolean active,
                           String extraData)
                           throws SystemException
Removes all the social equity logs where userId = ? and assetEntryId = ? and actionId = ? and active = ? and extraData = ? from the database.

Parameters:
userId - the user ID
assetEntryId - the asset entry ID
actionId - the action ID
active - the active
extraData - the extra data
Throws:
SystemException - if a system exception occurred

removeByU_AID_AD_A_T_E

void removeByU_AID_AD_A_T_E(long userId,
                            String actionId,
                            int actionDate,
                            boolean active,
                            int type,
                            String extraData)
                            throws SystemException
Removes all the social equity logs where userId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ? from the database.

Parameters:
userId - the user ID
actionId - the action ID
actionDate - the action date
active - the active
type - the type
extraData - the extra data
Throws:
SystemException - if a system exception occurred

removeByAEI_AID_AD_A_T_E

void removeByAEI_AID_AD_A_T_E(long assetEntryId,
                              String actionId,
                              int actionDate,
                              boolean active,
                              int type,
                              String extraData)
                              throws SystemException
Removes all the social equity logs where assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ? from the database.

Parameters:
assetEntryId - the asset entry ID
actionId - the action ID
actionDate - the action date
active - the active
type - the type
extraData - the extra data
Throws:
SystemException - if a system exception occurred

removeByU_AEI_AID_AD_A_T_E

void removeByU_AEI_AID_AD_A_T_E(long userId,
                                long assetEntryId,
                                String actionId,
                                int actionDate,
                                boolean active,
                                int type,
                                String extraData)
                                throws SystemException,
                                       NoSuchEquityLogException
Removes the social equity log where userId = ? and assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ? from the database.

Parameters:
userId - the user ID
assetEntryId - the asset entry ID
actionId - the action ID
actionDate - the action date
active - the active
type - the type
extraData - the extra data
Throws:
SystemException - if a system exception occurred
NoSuchEquityLogException

removeAll

void removeAll()
               throws SystemException
Removes all the social equity logs from the database.

Throws:
SystemException - if a system exception occurred

countByUserId

int countByUserId(long userId)
                  throws SystemException
Returns the number of social equity logs where userId = ?.

Parameters:
userId - the user ID
Returns:
the number of matching social equity logs
Throws:
SystemException - if a system exception occurred

countByAEI_T_A

int countByAEI_T_A(long assetEntryId,
                   int type,
                   boolean active)
                   throws SystemException
Returns the number of social equity logs where assetEntryId = ? and type = ? and active = ?.

Parameters:
assetEntryId - the asset entry ID
type - the type
active - the active
Returns:
the number of matching social equity logs
Throws:
SystemException - if a system exception occurred

countByAEI_AID_A_E

int countByAEI_AID_A_E(long assetEntryId,
                       String actionId,
                       boolean active,
                       String extraData)
                       throws SystemException
Returns the number of social equity logs where assetEntryId = ? and actionId = ? and active = ? and extraData = ?.

Parameters:
assetEntryId - the asset entry ID
actionId - the action ID
active - the active
extraData - the extra data
Returns:
the number of matching social equity logs
Throws:
SystemException - if a system exception occurred

countByU_AEI_AID_A_E

int countByU_AEI_AID_A_E(long userId,
                         long assetEntryId,
                         String actionId,
                         boolean active,
                         String extraData)
                         throws SystemException
Returns the number of social equity logs where userId = ? and assetEntryId = ? and actionId = ? and active = ? and extraData = ?.

Parameters:
userId - the user ID
assetEntryId - the asset entry ID
actionId - the action ID
active - the active
extraData - the extra data
Returns:
the number of matching social equity logs
Throws:
SystemException - if a system exception occurred

countByU_AID_AD_A_T_E

int countByU_AID_AD_A_T_E(long userId,
                          String actionId,
                          int actionDate,
                          boolean active,
                          int type,
                          String extraData)
                          throws SystemException
Returns the number of social equity logs where userId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.

Parameters:
userId - the user ID
actionId - the action ID
actionDate - the action date
active - the active
type - the type
extraData - the extra data
Returns:
the number of matching social equity logs
Throws:
SystemException - if a system exception occurred

countByAEI_AID_AD_A_T_E

int countByAEI_AID_AD_A_T_E(long assetEntryId,
                            String actionId,
                            int actionDate,
                            boolean active,
                            int type,
                            String extraData)
                            throws SystemException
Returns the number of social equity logs where assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.

Parameters:
assetEntryId - the asset entry ID
actionId - the action ID
actionDate - the action date
active - the active
type - the type
extraData - the extra data
Returns:
the number of matching social equity logs
Throws:
SystemException - if a system exception occurred

countByU_AEI_AID_AD_A_T_E

int countByU_AEI_AID_AD_A_T_E(long userId,
                              long assetEntryId,
                              String actionId,
                              int actionDate,
                              boolean active,
                              int type,
                              String extraData)
                              throws SystemException
Returns the number of social equity logs where userId = ? and assetEntryId = ? and actionId = ? and actionDate = ? and active = ? and type = ? and extraData = ?.

Parameters:
userId - the user ID
assetEntryId - the asset entry ID
actionId - the action ID
actionDate - the action date
active - the active
type - the type
extraData - the extra data
Returns:
the number of matching social equity logs
Throws:
SystemException - if a system exception occurred

countAll

int countAll()
             throws SystemException
Returns the number of social equity logs.

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

remove

SocialEquityLog remove(SocialEquityLog socialEquityLog)
                       throws SystemException
Description copied from interface: BasePersistence
Removes the model instance from the database. Also notifies the appropriate model listeners.

Specified by:
remove in interface BasePersistence<SocialEquityLog>
Parameters:
socialEquityLog - the model instance to remove
Returns:
the model instance that was removed
Throws:
SystemException - if a system exception occurred

Liferay 6.1.0