com.liferay.portlet.polls.service.persistence
Class PollsVotePersistenceImpl

java.lang.Object
  extended by com.liferay.portal.service.persistence.impl.BasePersistenceImpl<com.liferay.portlet.polls.model.PollsVote>
      extended by com.liferay.portlet.polls.service.persistence.PollsVotePersistenceImpl
All Implemented Interfaces:
com.liferay.portal.kernel.dao.orm.SessionFactory, com.liferay.portal.service.persistence.BasePersistence<com.liferay.portlet.polls.model.PollsVote>, com.liferay.portlet.polls.service.persistence.PollsVotePersistence

public class PollsVotePersistenceImpl
extends com.liferay.portal.service.persistence.impl.BasePersistenceImpl<com.liferay.portlet.polls.model.PollsVote>
implements com.liferay.portlet.polls.service.persistence.PollsVotePersistence

The persistence implementation for the polls vote service.

Caching information and settings can be found in portal.properties

Author:
Brian Wing Shun Chan
See Also:
PollsVotePersistence, PollsVoteUtil
Generated:

Field Summary
static java.lang.String FINDER_CLASS_NAME_ENTITY
           
static java.lang.String FINDER_CLASS_NAME_LIST_WITH_PAGINATION
           
static java.lang.String FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION
           
static com.liferay.portal.kernel.dao.orm.FinderPath FINDER_PATH_COUNT_ALL
           
static com.liferay.portal.kernel.dao.orm.FinderPath FINDER_PATH_COUNT_BY_CHOICEID
           
static com.liferay.portal.kernel.dao.orm.FinderPath FINDER_PATH_COUNT_BY_Q_U
           
static com.liferay.portal.kernel.dao.orm.FinderPath FINDER_PATH_COUNT_BY_QUESTIONID
           
static com.liferay.portal.kernel.dao.orm.FinderPath FINDER_PATH_FETCH_BY_Q_U
           
static com.liferay.portal.kernel.dao.orm.FinderPath FINDER_PATH_WITH_PAGINATION_FIND_ALL
           
static com.liferay.portal.kernel.dao.orm.FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_CHOICEID
           
static com.liferay.portal.kernel.dao.orm.FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_QUESTIONID
           
static com.liferay.portal.kernel.dao.orm.FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_ALL
           
static com.liferay.portal.kernel.dao.orm.FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_CHOICEID
           
static com.liferay.portal.kernel.dao.orm.FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_QUESTIONID
           
protected  com.liferay.portlet.polls.service.persistence.PollsChoicePersistence pollsChoicePersistence
           
protected  com.liferay.portlet.polls.service.persistence.PollsQuestionPersistence pollsQuestionPersistence
           
protected  com.liferay.portlet.polls.service.persistence.PollsVotePersistence pollsVotePersistence
           
protected  com.liferay.portal.service.persistence.ResourcePersistence resourcePersistence
           
protected  com.liferay.portal.service.persistence.UserPersistence userPersistence
           
 
Fields inherited from class com.liferay.portal.service.persistence.impl.BasePersistenceImpl
COUNT_COLUMN_NAME, FINDER_ARGS_EMPTY, listeners, ORDER_BY_ASC, ORDER_BY_ASC_HAS_NEXT, ORDER_BY_CLAUSE, ORDER_BY_DESC, ORDER_BY_DESC_HAS_NEXT, WHERE_AND, WHERE_GREATER_THAN, WHERE_GREATER_THAN_HAS_NEXT, WHERE_LESSER_THAN, WHERE_LESSER_THAN_HAS_NEXT, WHERE_OR
 
Constructor Summary
PollsVotePersistenceImpl()
           
 
Method Summary
 void afterPropertiesSet()
          Initializes the polls vote persistence.
 void cacheResult(java.util.List<com.liferay.portlet.polls.model.PollsVote> pollsVotes)
          Caches the polls votes in the entity cache if it is enabled.
 void cacheResult(com.liferay.portlet.polls.model.PollsVote pollsVote)
          Caches the polls vote in the entity cache if it is enabled.
 void clearCache()
          Clears the cache for all polls votes.
 void clearCache(java.util.List<com.liferay.portlet.polls.model.PollsVote> pollsVotes)
           
 void clearCache(com.liferay.portlet.polls.model.PollsVote pollsVote)
          Clears the cache for the polls vote.
protected  void clearUniqueFindersCache(com.liferay.portlet.polls.model.PollsVote pollsVote)
           
 int countAll()
          Returns the number of polls votes.
 int countByChoiceId(long choiceId)
          Returns the number of polls votes where choiceId = ?.
 int countByQ_U(long questionId, long userId)
          Returns the number of polls votes where questionId = ? and userId = ?.
 int countByQuestionId(long questionId)
          Returns the number of polls votes where questionId = ?.
 com.liferay.portlet.polls.model.PollsVote create(long voteId)
          Creates a new polls vote with the primary key.
 void destroy()
           
 com.liferay.portlet.polls.model.PollsVote fetchByPrimaryKey(long voteId)
          Returns the polls vote with the primary key or returns null if it could not be found.
 com.liferay.portlet.polls.model.PollsVote fetchByPrimaryKey(java.io.Serializable primaryKey)
          Returns the polls vote with the primary key or returns null if it could not be found.
 com.liferay.portlet.polls.model.PollsVote fetchByQ_U(long questionId, long userId)
          Returns the polls vote where questionId = ? and userId = ? or returns null if it could not be found.
 com.liferay.portlet.polls.model.PollsVote fetchByQ_U(long questionId, long userId, boolean retrieveFromCache)
          Returns the polls vote where questionId = ? and userId = ? or returns null if it could not be found, optionally using the finder cache.
 java.util.List<com.liferay.portlet.polls.model.PollsVote> findAll()
          Returns all the polls votes.
 java.util.List<com.liferay.portlet.polls.model.PollsVote> findAll(int start, int end)
          Returns a range of all the polls votes.
 java.util.List<com.liferay.portlet.polls.model.PollsVote> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
          Returns an ordered range of all the polls votes.
 com.liferay.portlet.polls.model.PollsVote findByChoiceId_First(long choiceId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
          Returns the first polls vote in the ordered set where choiceId = ?.
 com.liferay.portlet.polls.model.PollsVote findByChoiceId_Last(long choiceId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
          Returns the last polls vote in the ordered set where choiceId = ?.
 com.liferay.portlet.polls.model.PollsVote[] findByChoiceId_PrevAndNext(long voteId, long choiceId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
          Returns the polls votes before and after the current polls vote in the ordered set where choiceId = ?.
 java.util.List<com.liferay.portlet.polls.model.PollsVote> findByChoiceId(long choiceId)
          Returns all the polls votes where choiceId = ?.
 java.util.List<com.liferay.portlet.polls.model.PollsVote> findByChoiceId(long choiceId, int start, int end)
          Returns a range of all the polls votes where choiceId = ?.
 java.util.List<com.liferay.portlet.polls.model.PollsVote> findByChoiceId(long choiceId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
          Returns an ordered range of all the polls votes where choiceId = ?.
 com.liferay.portlet.polls.model.PollsVote findByPrimaryKey(long voteId)
          Returns the polls vote with the primary key or throws a NoSuchVoteException if it could not be found.
 com.liferay.portlet.polls.model.PollsVote findByPrimaryKey(java.io.Serializable primaryKey)
          Returns the polls vote with the primary key or throws a NoSuchModelException if it could not be found.
 com.liferay.portlet.polls.model.PollsVote findByQ_U(long questionId, long userId)
          Returns the polls vote where questionId = ? and userId = ? or throws a NoSuchVoteException if it could not be found.
 com.liferay.portlet.polls.model.PollsVote findByQuestionId_First(long questionId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
          Returns the first polls vote in the ordered set where questionId = ?.
 com.liferay.portlet.polls.model.PollsVote findByQuestionId_Last(long questionId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
          Returns the last polls vote in the ordered set where questionId = ?.
 com.liferay.portlet.polls.model.PollsVote[] findByQuestionId_PrevAndNext(long voteId, long questionId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
          Returns the polls votes before and after the current polls vote in the ordered set where questionId = ?.
 java.util.List<com.liferay.portlet.polls.model.PollsVote> findByQuestionId(long questionId)
          Returns all the polls votes where questionId = ?.
 java.util.List<com.liferay.portlet.polls.model.PollsVote> findByQuestionId(long questionId, int start, int end)
          Returns a range of all the polls votes where questionId = ?.
 java.util.List<com.liferay.portlet.polls.model.PollsVote> findByQuestionId(long questionId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
          Returns an ordered range of all the polls votes where questionId = ?.
protected  com.liferay.portlet.polls.model.PollsVote getByChoiceId_PrevAndNext(com.liferay.portal.kernel.dao.orm.Session session, com.liferay.portlet.polls.model.PollsVote pollsVote, long choiceId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator, boolean previous)
           
protected  com.liferay.portlet.polls.model.PollsVote getByQuestionId_PrevAndNext(com.liferay.portal.kernel.dao.orm.Session session, com.liferay.portlet.polls.model.PollsVote pollsVote, long questionId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator, boolean previous)
           
 com.liferay.portlet.polls.model.PollsVote remove(long voteId)
          Removes the polls vote with the primary key from the database.
 com.liferay.portlet.polls.model.PollsVote remove(java.io.Serializable primaryKey)
          Removes the polls vote with the primary key from the database.
 void removeAll()
          Removes all the polls votes from the database.
 void removeByChoiceId(long choiceId)
          Removes all the polls votes where choiceId = ? from the database.
 void removeByQ_U(long questionId, long userId)
          Removes the polls vote where questionId = ? and userId = ? from the database.
 void removeByQuestionId(long questionId)
          Removes all the polls votes where questionId = ? from the database.
protected  com.liferay.portlet.polls.model.PollsVote removeImpl(com.liferay.portlet.polls.model.PollsVote pollsVote)
           
protected  com.liferay.portlet.polls.model.PollsVote toUnwrappedModel(com.liferay.portlet.polls.model.PollsVote pollsVote)
           
 com.liferay.portlet.polls.model.PollsVote updateImpl(com.liferay.portlet.polls.model.PollsVote pollsVote, boolean merge)
           
 
Methods inherited from class com.liferay.portal.service.persistence.impl.BasePersistenceImpl
appendOrderByComparator, closeSession, countWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, getDataSource, getDB, getDialect, getListeners, openNewSession, openSession, processException, registerListener, remove, setDataSource, setSessionFactory, unregisterListener, update, update
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence
closeSession, countWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, getDataSource, getListeners, openSession, processException, registerListener, remove, setDataSource, unregisterListener, update, update
 

Field Detail

FINDER_CLASS_NAME_ENTITY

public static final java.lang.String FINDER_CLASS_NAME_ENTITY

FINDER_CLASS_NAME_LIST_WITH_PAGINATION

public static final java.lang.String FINDER_CLASS_NAME_LIST_WITH_PAGINATION

FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION

public static final java.lang.String FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION

FINDER_PATH_WITH_PAGINATION_FIND_BY_QUESTIONID

public static final com.liferay.portal.kernel.dao.orm.FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_QUESTIONID

FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_QUESTIONID

public static final com.liferay.portal.kernel.dao.orm.FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_QUESTIONID

FINDER_PATH_COUNT_BY_QUESTIONID

public static final com.liferay.portal.kernel.dao.orm.FinderPath FINDER_PATH_COUNT_BY_QUESTIONID

FINDER_PATH_WITH_PAGINATION_FIND_BY_CHOICEID

public static final com.liferay.portal.kernel.dao.orm.FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_CHOICEID

FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_CHOICEID

public static final com.liferay.portal.kernel.dao.orm.FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_CHOICEID

FINDER_PATH_COUNT_BY_CHOICEID

public static final com.liferay.portal.kernel.dao.orm.FinderPath FINDER_PATH_COUNT_BY_CHOICEID

FINDER_PATH_FETCH_BY_Q_U

public static final com.liferay.portal.kernel.dao.orm.FinderPath FINDER_PATH_FETCH_BY_Q_U

FINDER_PATH_COUNT_BY_Q_U

public static final com.liferay.portal.kernel.dao.orm.FinderPath FINDER_PATH_COUNT_BY_Q_U

FINDER_PATH_WITH_PAGINATION_FIND_ALL

public static final com.liferay.portal.kernel.dao.orm.FinderPath FINDER_PATH_WITH_PAGINATION_FIND_ALL

FINDER_PATH_WITHOUT_PAGINATION_FIND_ALL

public static final com.liferay.portal.kernel.dao.orm.FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_ALL

FINDER_PATH_COUNT_ALL

public static final com.liferay.portal.kernel.dao.orm.FinderPath FINDER_PATH_COUNT_ALL

pollsChoicePersistence

@BeanReference(type=com.liferay.portlet.polls.service.persistence.PollsChoicePersistence.class)
protected com.liferay.portlet.polls.service.persistence.PollsChoicePersistence pollsChoicePersistence

pollsQuestionPersistence

@BeanReference(type=com.liferay.portlet.polls.service.persistence.PollsQuestionPersistence.class)
protected com.liferay.portlet.polls.service.persistence.PollsQuestionPersistence pollsQuestionPersistence

pollsVotePersistence

@BeanReference(type=com.liferay.portlet.polls.service.persistence.PollsVotePersistence.class)
protected com.liferay.portlet.polls.service.persistence.PollsVotePersistence pollsVotePersistence

resourcePersistence

@BeanReference(type=com.liferay.portal.service.persistence.ResourcePersistence.class)
protected com.liferay.portal.service.persistence.ResourcePersistence resourcePersistence

userPersistence

@BeanReference(type=com.liferay.portal.service.persistence.UserPersistence.class)
protected com.liferay.portal.service.persistence.UserPersistence userPersistence
Constructor Detail

PollsVotePersistenceImpl

public PollsVotePersistenceImpl()
Method Detail

cacheResult

public void cacheResult(com.liferay.portlet.polls.model.PollsVote pollsVote)
Caches the polls vote in the entity cache if it is enabled.

Specified by:
cacheResult in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Parameters:
pollsVote - the polls vote

cacheResult

public void cacheResult(java.util.List<com.liferay.portlet.polls.model.PollsVote> pollsVotes)
Caches the polls votes in the entity cache if it is enabled.

Specified by:
cacheResult in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Parameters:
pollsVotes - the polls votes

clearCache

public void clearCache()
Clears the cache for all polls votes.

The EntityCache and FinderCache are both cleared by this method.

Specified by:
clearCache in interface com.liferay.portal.service.persistence.BasePersistence<com.liferay.portlet.polls.model.PollsVote>
Overrides:
clearCache in class com.liferay.portal.service.persistence.impl.BasePersistenceImpl<com.liferay.portlet.polls.model.PollsVote>

clearCache

public void clearCache(com.liferay.portlet.polls.model.PollsVote pollsVote)
Clears the cache for the polls vote.

The EntityCache and FinderCache are both cleared by this method.

Specified by:
clearCache in interface com.liferay.portal.service.persistence.BasePersistence<com.liferay.portlet.polls.model.PollsVote>
Overrides:
clearCache in class com.liferay.portal.service.persistence.impl.BasePersistenceImpl<com.liferay.portlet.polls.model.PollsVote>

clearCache

public void clearCache(java.util.List<com.liferay.portlet.polls.model.PollsVote> pollsVotes)
Specified by:
clearCache in interface com.liferay.portal.service.persistence.BasePersistence<com.liferay.portlet.polls.model.PollsVote>
Overrides:
clearCache in class com.liferay.portal.service.persistence.impl.BasePersistenceImpl<com.liferay.portlet.polls.model.PollsVote>

clearUniqueFindersCache

protected void clearUniqueFindersCache(com.liferay.portlet.polls.model.PollsVote pollsVote)

create

public com.liferay.portlet.polls.model.PollsVote create(long voteId)
Creates a new polls vote with the primary key. Does not add the polls vote to the database.

Specified by:
create in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Parameters:
voteId - the primary key for the new polls vote
Returns:
the new polls vote

remove

public com.liferay.portlet.polls.model.PollsVote remove(long voteId)
                                                 throws com.liferay.portlet.polls.NoSuchVoteException,
                                                        com.liferay.portal.kernel.exception.SystemException
Removes the polls vote with the primary key from the database. Also notifies the appropriate model listeners.

Specified by:
remove in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Parameters:
voteId - the primary key of the polls vote
Returns:
the polls vote that was removed
Throws:
com.liferay.portlet.polls.NoSuchVoteException - if a polls vote with the primary key could not be found
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

remove

public com.liferay.portlet.polls.model.PollsVote remove(java.io.Serializable primaryKey)
                                                 throws com.liferay.portlet.polls.NoSuchVoteException,
                                                        com.liferay.portal.kernel.exception.SystemException
Removes the polls vote with the primary key from the database. Also notifies the appropriate model listeners.

Specified by:
remove in interface com.liferay.portal.service.persistence.BasePersistence<com.liferay.portlet.polls.model.PollsVote>
Overrides:
remove in class com.liferay.portal.service.persistence.impl.BasePersistenceImpl<com.liferay.portlet.polls.model.PollsVote>
Parameters:
primaryKey - the primary key of the polls vote
Returns:
the polls vote that was removed
Throws:
com.liferay.portlet.polls.NoSuchVoteException - if a polls vote with the primary key could not be found
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

removeImpl

protected com.liferay.portlet.polls.model.PollsVote removeImpl(com.liferay.portlet.polls.model.PollsVote pollsVote)
                                                        throws com.liferay.portal.kernel.exception.SystemException
Overrides:
removeImpl in class com.liferay.portal.service.persistence.impl.BasePersistenceImpl<com.liferay.portlet.polls.model.PollsVote>
Throws:
com.liferay.portal.kernel.exception.SystemException

updateImpl

public com.liferay.portlet.polls.model.PollsVote updateImpl(com.liferay.portlet.polls.model.PollsVote pollsVote,
                                                            boolean merge)
                                                     throws com.liferay.portal.kernel.exception.SystemException
Specified by:
updateImpl in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Overrides:
updateImpl in class com.liferay.portal.service.persistence.impl.BasePersistenceImpl<com.liferay.portlet.polls.model.PollsVote>
Throws:
com.liferay.portal.kernel.exception.SystemException

toUnwrappedModel

protected com.liferay.portlet.polls.model.PollsVote toUnwrappedModel(com.liferay.portlet.polls.model.PollsVote pollsVote)

findByPrimaryKey

public com.liferay.portlet.polls.model.PollsVote findByPrimaryKey(java.io.Serializable primaryKey)
                                                           throws com.liferay.portal.NoSuchModelException,
                                                                  com.liferay.portal.kernel.exception.SystemException
Returns the polls vote with the primary key or throws a NoSuchModelException if it could not be found.

Specified by:
findByPrimaryKey in interface com.liferay.portal.service.persistence.BasePersistence<com.liferay.portlet.polls.model.PollsVote>
Overrides:
findByPrimaryKey in class com.liferay.portal.service.persistence.impl.BasePersistenceImpl<com.liferay.portlet.polls.model.PollsVote>
Parameters:
primaryKey - the primary key of the polls vote
Returns:
the polls vote
Throws:
com.liferay.portal.NoSuchModelException - if a polls vote with the primary key could not be found
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

findByPrimaryKey

public com.liferay.portlet.polls.model.PollsVote findByPrimaryKey(long voteId)
                                                           throws com.liferay.portlet.polls.NoSuchVoteException,
                                                                  com.liferay.portal.kernel.exception.SystemException
Returns the polls vote with the primary key or throws a NoSuchVoteException if it could not be found.

Specified by:
findByPrimaryKey in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Parameters:
voteId - the primary key of the polls vote
Returns:
the polls vote
Throws:
com.liferay.portlet.polls.NoSuchVoteException - if a polls vote with the primary key could not be found
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

fetchByPrimaryKey

public com.liferay.portlet.polls.model.PollsVote fetchByPrimaryKey(java.io.Serializable primaryKey)
                                                            throws com.liferay.portal.kernel.exception.SystemException
Returns the polls vote with the primary key or returns null if it could not be found.

Specified by:
fetchByPrimaryKey in interface com.liferay.portal.service.persistence.BasePersistence<com.liferay.portlet.polls.model.PollsVote>
Overrides:
fetchByPrimaryKey in class com.liferay.portal.service.persistence.impl.BasePersistenceImpl<com.liferay.portlet.polls.model.PollsVote>
Parameters:
primaryKey - the primary key of the polls vote
Returns:
the polls vote, or null if a polls vote with the primary key could not be found
Throws:
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

fetchByPrimaryKey

public com.liferay.portlet.polls.model.PollsVote fetchByPrimaryKey(long voteId)
                                                            throws com.liferay.portal.kernel.exception.SystemException
Returns the polls vote with the primary key or returns null if it could not be found.

Specified by:
fetchByPrimaryKey in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Parameters:
voteId - the primary key of the polls vote
Returns:
the polls vote, or null if a polls vote with the primary key could not be found
Throws:
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

findByQuestionId

public java.util.List<com.liferay.portlet.polls.model.PollsVote> findByQuestionId(long questionId)
                                                                           throws com.liferay.portal.kernel.exception.SystemException
Returns all the polls votes where questionId = ?.

Specified by:
findByQuestionId in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Parameters:
questionId - the question ID
Returns:
the matching polls votes
Throws:
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

findByQuestionId

public java.util.List<com.liferay.portlet.polls.model.PollsVote> findByQuestionId(long questionId,
                                                                                  int start,
                                                                                  int end)
                                                                           throws com.liferay.portal.kernel.exception.SystemException
Returns a range of all the polls votes where questionId = ?.

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.

Specified by:
findByQuestionId in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Parameters:
questionId - the question ID
start - the lower bound of the range of polls votes
end - the upper bound of the range of polls votes (not inclusive)
Returns:
the range of matching polls votes
Throws:
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

findByQuestionId

public java.util.List<com.liferay.portlet.polls.model.PollsVote> findByQuestionId(long questionId,
                                                                                  int start,
                                                                                  int end,
                                                                                  com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
                                                                           throws com.liferay.portal.kernel.exception.SystemException
Returns an ordered range of all the polls votes where questionId = ?.

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.

Specified by:
findByQuestionId in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Parameters:
questionId - the question ID
start - the lower bound of the range of polls votes
end - the upper bound of the range of polls votes (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching polls votes
Throws:
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

findByQuestionId_First

public com.liferay.portlet.polls.model.PollsVote findByQuestionId_First(long questionId,
                                                                        com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
                                                                 throws com.liferay.portlet.polls.NoSuchVoteException,
                                                                        com.liferay.portal.kernel.exception.SystemException
Returns the first polls vote in the ordered set where questionId = ?.

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.

Specified by:
findByQuestionId_First in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Parameters:
questionId - the question ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching polls vote
Throws:
com.liferay.portlet.polls.NoSuchVoteException - if a matching polls vote could not be found
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

findByQuestionId_Last

public com.liferay.portlet.polls.model.PollsVote findByQuestionId_Last(long questionId,
                                                                       com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
                                                                throws com.liferay.portlet.polls.NoSuchVoteException,
                                                                       com.liferay.portal.kernel.exception.SystemException
Returns the last polls vote in the ordered set where questionId = ?.

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.

Specified by:
findByQuestionId_Last in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Parameters:
questionId - the question ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching polls vote
Throws:
com.liferay.portlet.polls.NoSuchVoteException - if a matching polls vote could not be found
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

findByQuestionId_PrevAndNext

public com.liferay.portlet.polls.model.PollsVote[] findByQuestionId_PrevAndNext(long voteId,
                                                                                long questionId,
                                                                                com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
                                                                         throws com.liferay.portlet.polls.NoSuchVoteException,
                                                                                com.liferay.portal.kernel.exception.SystemException
Returns the polls votes before and after the current polls vote in the ordered set where questionId = ?.

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.

Specified by:
findByQuestionId_PrevAndNext in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Parameters:
voteId - the primary key of the current polls vote
questionId - the question ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next polls vote
Throws:
com.liferay.portlet.polls.NoSuchVoteException - if a polls vote with the primary key could not be found
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

getByQuestionId_PrevAndNext

protected com.liferay.portlet.polls.model.PollsVote getByQuestionId_PrevAndNext(com.liferay.portal.kernel.dao.orm.Session session,
                                                                                com.liferay.portlet.polls.model.PollsVote pollsVote,
                                                                                long questionId,
                                                                                com.liferay.portal.kernel.util.OrderByComparator orderByComparator,
                                                                                boolean previous)

findByChoiceId

public java.util.List<com.liferay.portlet.polls.model.PollsVote> findByChoiceId(long choiceId)
                                                                         throws com.liferay.portal.kernel.exception.SystemException
Returns all the polls votes where choiceId = ?.

Specified by:
findByChoiceId in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Parameters:
choiceId - the choice ID
Returns:
the matching polls votes
Throws:
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

findByChoiceId

public java.util.List<com.liferay.portlet.polls.model.PollsVote> findByChoiceId(long choiceId,
                                                                                int start,
                                                                                int end)
                                                                         throws com.liferay.portal.kernel.exception.SystemException
Returns a range of all the polls votes where choiceId = ?.

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.

Specified by:
findByChoiceId in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Parameters:
choiceId - the choice ID
start - the lower bound of the range of polls votes
end - the upper bound of the range of polls votes (not inclusive)
Returns:
the range of matching polls votes
Throws:
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

findByChoiceId

public java.util.List<com.liferay.portlet.polls.model.PollsVote> findByChoiceId(long choiceId,
                                                                                int start,
                                                                                int end,
                                                                                com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
                                                                         throws com.liferay.portal.kernel.exception.SystemException
Returns an ordered range of all the polls votes where choiceId = ?.

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.

Specified by:
findByChoiceId in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Parameters:
choiceId - the choice ID
start - the lower bound of the range of polls votes
end - the upper bound of the range of polls votes (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching polls votes
Throws:
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

findByChoiceId_First

public com.liferay.portlet.polls.model.PollsVote findByChoiceId_First(long choiceId,
                                                                      com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
                                                               throws com.liferay.portlet.polls.NoSuchVoteException,
                                                                      com.liferay.portal.kernel.exception.SystemException
Returns the first polls vote in the ordered set where choiceId = ?.

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.

Specified by:
findByChoiceId_First in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Parameters:
choiceId - the choice ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching polls vote
Throws:
com.liferay.portlet.polls.NoSuchVoteException - if a matching polls vote could not be found
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

findByChoiceId_Last

public com.liferay.portlet.polls.model.PollsVote findByChoiceId_Last(long choiceId,
                                                                     com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
                                                              throws com.liferay.portlet.polls.NoSuchVoteException,
                                                                     com.liferay.portal.kernel.exception.SystemException
Returns the last polls vote in the ordered set where choiceId = ?.

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.

Specified by:
findByChoiceId_Last in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Parameters:
choiceId - the choice ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching polls vote
Throws:
com.liferay.portlet.polls.NoSuchVoteException - if a matching polls vote could not be found
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

findByChoiceId_PrevAndNext

public com.liferay.portlet.polls.model.PollsVote[] findByChoiceId_PrevAndNext(long voteId,
                                                                              long choiceId,
                                                                              com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
                                                                       throws com.liferay.portlet.polls.NoSuchVoteException,
                                                                              com.liferay.portal.kernel.exception.SystemException
Returns the polls votes before and after the current polls vote in the ordered set where choiceId = ?.

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.

Specified by:
findByChoiceId_PrevAndNext in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Parameters:
voteId - the primary key of the current polls vote
choiceId - the choice ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next polls vote
Throws:
com.liferay.portlet.polls.NoSuchVoteException - if a polls vote with the primary key could not be found
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

getByChoiceId_PrevAndNext

protected com.liferay.portlet.polls.model.PollsVote getByChoiceId_PrevAndNext(com.liferay.portal.kernel.dao.orm.Session session,
                                                                              com.liferay.portlet.polls.model.PollsVote pollsVote,
                                                                              long choiceId,
                                                                              com.liferay.portal.kernel.util.OrderByComparator orderByComparator,
                                                                              boolean previous)

findByQ_U

public com.liferay.portlet.polls.model.PollsVote findByQ_U(long questionId,
                                                           long userId)
                                                    throws com.liferay.portlet.polls.NoSuchVoteException,
                                                           com.liferay.portal.kernel.exception.SystemException
Returns the polls vote where questionId = ? and userId = ? or throws a NoSuchVoteException if it could not be found.

Specified by:
findByQ_U in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Parameters:
questionId - the question ID
userId - the user ID
Returns:
the matching polls vote
Throws:
com.liferay.portlet.polls.NoSuchVoteException - if a matching polls vote could not be found
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

fetchByQ_U

public com.liferay.portlet.polls.model.PollsVote fetchByQ_U(long questionId,
                                                            long userId)
                                                     throws com.liferay.portal.kernel.exception.SystemException
Returns the polls vote where questionId = ? and userId = ? or returns null if it could not be found. Uses the finder cache.

Specified by:
fetchByQ_U in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Parameters:
questionId - the question ID
userId - the user ID
Returns:
the matching polls vote, or null if a matching polls vote could not be found
Throws:
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

fetchByQ_U

public com.liferay.portlet.polls.model.PollsVote fetchByQ_U(long questionId,
                                                            long userId,
                                                            boolean retrieveFromCache)
                                                     throws com.liferay.portal.kernel.exception.SystemException
Returns the polls vote where questionId = ? and userId = ? or returns null if it could not be found, optionally using the finder cache.

Specified by:
fetchByQ_U in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Parameters:
questionId - the question ID
userId - the user ID
retrieveFromCache - whether to use the finder cache
Returns:
the matching polls vote, or null if a matching polls vote could not be found
Throws:
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

findAll

public java.util.List<com.liferay.portlet.polls.model.PollsVote> findAll()
                                                                  throws com.liferay.portal.kernel.exception.SystemException
Returns all the polls votes.

Specified by:
findAll in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Returns:
the polls votes
Throws:
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

findAll

public java.util.List<com.liferay.portlet.polls.model.PollsVote> findAll(int start,
                                                                         int end)
                                                                  throws com.liferay.portal.kernel.exception.SystemException
Returns a range of all the polls votes.

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.

Specified by:
findAll in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Parameters:
start - the lower bound of the range of polls votes
end - the upper bound of the range of polls votes (not inclusive)
Returns:
the range of polls votes
Throws:
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

findAll

public java.util.List<com.liferay.portlet.polls.model.PollsVote> findAll(int start,
                                                                         int end,
                                                                         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
                                                                  throws com.liferay.portal.kernel.exception.SystemException
Returns an ordered range of all the polls votes.

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.

Specified by:
findAll in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Parameters:
start - the lower bound of the range of polls votes
end - the upper bound of the range of polls votes (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of polls votes
Throws:
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

removeByQuestionId

public void removeByQuestionId(long questionId)
                        throws com.liferay.portal.kernel.exception.SystemException
Removes all the polls votes where questionId = ? from the database.

Specified by:
removeByQuestionId in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Parameters:
questionId - the question ID
Throws:
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

removeByChoiceId

public void removeByChoiceId(long choiceId)
                      throws com.liferay.portal.kernel.exception.SystemException
Removes all the polls votes where choiceId = ? from the database.

Specified by:
removeByChoiceId in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Parameters:
choiceId - the choice ID
Throws:
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

removeByQ_U

public void removeByQ_U(long questionId,
                        long userId)
                 throws com.liferay.portlet.polls.NoSuchVoteException,
                        com.liferay.portal.kernel.exception.SystemException
Removes the polls vote where questionId = ? and userId = ? from the database.

Specified by:
removeByQ_U in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Parameters:
questionId - the question ID
userId - the user ID
Throws:
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred
com.liferay.portlet.polls.NoSuchVoteException

removeAll

public void removeAll()
               throws com.liferay.portal.kernel.exception.SystemException
Removes all the polls votes from the database.

Specified by:
removeAll in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Throws:
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

countByQuestionId

public int countByQuestionId(long questionId)
                      throws com.liferay.portal.kernel.exception.SystemException
Returns the number of polls votes where questionId = ?.

Specified by:
countByQuestionId in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Parameters:
questionId - the question ID
Returns:
the number of matching polls votes
Throws:
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

countByChoiceId

public int countByChoiceId(long choiceId)
                    throws com.liferay.portal.kernel.exception.SystemException
Returns the number of polls votes where choiceId = ?.

Specified by:
countByChoiceId in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Parameters:
choiceId - the choice ID
Returns:
the number of matching polls votes
Throws:
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

countByQ_U

public int countByQ_U(long questionId,
                      long userId)
               throws com.liferay.portal.kernel.exception.SystemException
Returns the number of polls votes where questionId = ? and userId = ?.

Specified by:
countByQ_U in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Parameters:
questionId - the question ID
userId - the user ID
Returns:
the number of matching polls votes
Throws:
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

countAll

public int countAll()
             throws com.liferay.portal.kernel.exception.SystemException
Returns the number of polls votes.

Specified by:
countAll in interface com.liferay.portlet.polls.service.persistence.PollsVotePersistence
Returns:
the number of polls votes
Throws:
com.liferay.portal.kernel.exception.SystemException - if a system exception occurred

afterPropertiesSet

public void afterPropertiesSet()
Initializes the polls vote persistence.


destroy

public void destroy()