com.liferay.portlet.polls.service.base
Class PollsChoiceLocalServiceBaseImpl

java.lang.Object
  extended by com.liferay.portlet.polls.service.base.PollsChoiceLocalServiceBaseImpl
All Implemented Interfaces:
com.liferay.portlet.polls.service.PollsChoiceLocalService, org.springframework.beans.factory.InitializingBean
Direct Known Subclasses:
PollsChoiceLocalServiceImpl

public abstract class PollsChoiceLocalServiceBaseImpl
extends java.lang.Object
implements com.liferay.portlet.polls.service.PollsChoiceLocalService, org.springframework.beans.factory.InitializingBean

View Source

Author:
Brian Wing Shun Chan

Field Summary
protected  com.liferay.counter.service.CounterLocalService counterLocalService
           
protected  com.liferay.counter.service.CounterService counterService
           
protected  com.liferay.portlet.polls.service.persistence.PollsChoiceFinder pollsChoiceFinder
           
protected  com.liferay.portlet.polls.service.persistence.PollsChoicePersistence pollsChoicePersistence
           
protected  com.liferay.portlet.polls.service.PollsQuestionLocalService pollsQuestionLocalService
           
protected  com.liferay.portlet.polls.service.persistence.PollsQuestionPersistence pollsQuestionPersistence
           
protected  com.liferay.portlet.polls.service.PollsQuestionService pollsQuestionService
           
protected  com.liferay.portlet.polls.service.PollsVoteLocalService pollsVoteLocalService
           
protected  com.liferay.portlet.polls.service.persistence.PollsVotePersistence pollsVotePersistence
           
protected  com.liferay.portlet.polls.service.PollsVoteService pollsVoteService
           
 
Constructor Summary
PollsChoiceLocalServiceBaseImpl()
           
 
Method Summary
 com.liferay.portlet.polls.model.PollsChoice addPollsChoice(com.liferay.portlet.polls.model.PollsChoice pollsChoice)
           
 void afterPropertiesSet()
           
 void deletePollsChoice(long choiceId)
           
 void deletePollsChoice(com.liferay.portlet.polls.model.PollsChoice pollsChoice)
           
 java.util.List<com.liferay.portlet.polls.model.PollsChoice> dynamicQuery(com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer)
           
 java.util.List<com.liferay.portlet.polls.model.PollsChoice> dynamicQuery(com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer, int begin, int end)
           
 com.liferay.counter.service.CounterLocalService getCounterLocalService()
           
 com.liferay.counter.service.CounterService getCounterService()
           
 com.liferay.portlet.polls.service.persistence.PollsChoiceFinder getPollsChoiceFinder()
           
 com.liferay.portlet.polls.service.persistence.PollsChoicePersistence getPollsChoicePersistence()
           
 com.liferay.portlet.polls.service.PollsQuestionLocalService getPollsQuestionLocalService()
           
 com.liferay.portlet.polls.service.persistence.PollsQuestionPersistence getPollsQuestionPersistence()
           
 com.liferay.portlet.polls.service.PollsQuestionService getPollsQuestionService()
           
 com.liferay.portlet.polls.service.PollsVoteLocalService getPollsVoteLocalService()
           
 com.liferay.portlet.polls.service.persistence.PollsVotePersistence getPollsVotePersistence()
           
 com.liferay.portlet.polls.service.PollsVoteService getPollsVoteService()
           
 void setCounterLocalService(com.liferay.counter.service.CounterLocalService counterLocalService)
           
 void setCounterService(com.liferay.counter.service.CounterService counterService)
           
 void setPollsChoiceFinder(com.liferay.portlet.polls.service.persistence.PollsChoiceFinder pollsChoiceFinder)
           
 void setPollsChoicePersistence(com.liferay.portlet.polls.service.persistence.PollsChoicePersistence pollsChoicePersistence)
           
 void setPollsQuestionLocalService(com.liferay.portlet.polls.service.PollsQuestionLocalService pollsQuestionLocalService)
           
 void setPollsQuestionPersistence(com.liferay.portlet.polls.service.persistence.PollsQuestionPersistence pollsQuestionPersistence)
           
 void setPollsQuestionService(com.liferay.portlet.polls.service.PollsQuestionService pollsQuestionService)
           
 void setPollsVoteLocalService(com.liferay.portlet.polls.service.PollsVoteLocalService pollsVoteLocalService)
           
 void setPollsVotePersistence(com.liferay.portlet.polls.service.persistence.PollsVotePersistence pollsVotePersistence)
           
 void setPollsVoteService(com.liferay.portlet.polls.service.PollsVoteService pollsVoteService)
           
 com.liferay.portlet.polls.model.PollsChoice updatePollsChoice(com.liferay.portlet.polls.model.PollsChoice pollsChoice)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface com.liferay.portlet.polls.service.PollsChoiceLocalService
addChoice, addChoice, getChoice, getChoices, getChoicesCount, updateChoice
 

Field Detail

pollsChoicePersistence

protected com.liferay.portlet.polls.service.persistence.PollsChoicePersistence pollsChoicePersistence

pollsChoiceFinder

protected com.liferay.portlet.polls.service.persistence.PollsChoiceFinder pollsChoiceFinder

pollsQuestionLocalService

protected com.liferay.portlet.polls.service.PollsQuestionLocalService pollsQuestionLocalService

pollsQuestionService

protected com.liferay.portlet.polls.service.PollsQuestionService pollsQuestionService

pollsQuestionPersistence

protected com.liferay.portlet.polls.service.persistence.PollsQuestionPersistence pollsQuestionPersistence

pollsVoteLocalService

protected com.liferay.portlet.polls.service.PollsVoteLocalService pollsVoteLocalService

pollsVoteService

protected com.liferay.portlet.polls.service.PollsVoteService pollsVoteService

pollsVotePersistence

protected com.liferay.portlet.polls.service.persistence.PollsVotePersistence pollsVotePersistence

counterLocalService

protected com.liferay.counter.service.CounterLocalService counterLocalService

counterService

protected com.liferay.counter.service.CounterService counterService
Constructor Detail

PollsChoiceLocalServiceBaseImpl

public PollsChoiceLocalServiceBaseImpl()
Method Detail

addPollsChoice

public com.liferay.portlet.polls.model.PollsChoice addPollsChoice(com.liferay.portlet.polls.model.PollsChoice pollsChoice)
                                                           throws com.liferay.portal.SystemException
Specified by:
addPollsChoice in interface com.liferay.portlet.polls.service.PollsChoiceLocalService
Throws:
com.liferay.portal.SystemException

deletePollsChoice

public void deletePollsChoice(long choiceId)
                       throws com.liferay.portal.PortalException,
                              com.liferay.portal.SystemException
Specified by:
deletePollsChoice in interface com.liferay.portlet.polls.service.PollsChoiceLocalService
Throws:
com.liferay.portal.PortalException
com.liferay.portal.SystemException

deletePollsChoice

public void deletePollsChoice(com.liferay.portlet.polls.model.PollsChoice pollsChoice)
                       throws com.liferay.portal.PortalException,
                              com.liferay.portal.SystemException
Specified by:
deletePollsChoice in interface com.liferay.portlet.polls.service.PollsChoiceLocalService
Throws:
com.liferay.portal.PortalException
com.liferay.portal.SystemException

dynamicQuery

public java.util.List<com.liferay.portlet.polls.model.PollsChoice> dynamicQuery(com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer)
                                                                         throws com.liferay.portal.SystemException
Specified by:
dynamicQuery in interface com.liferay.portlet.polls.service.PollsChoiceLocalService
Throws:
com.liferay.portal.SystemException

dynamicQuery

public java.util.List<com.liferay.portlet.polls.model.PollsChoice> dynamicQuery(com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer,
                                                                                int begin,
                                                                                int end)
                                                                         throws com.liferay.portal.SystemException
Specified by:
dynamicQuery in interface com.liferay.portlet.polls.service.PollsChoiceLocalService
Throws:
com.liferay.portal.SystemException

updatePollsChoice

public com.liferay.portlet.polls.model.PollsChoice updatePollsChoice(com.liferay.portlet.polls.model.PollsChoice pollsChoice)
                                                              throws com.liferay.portal.SystemException
Specified by:
updatePollsChoice in interface com.liferay.portlet.polls.service.PollsChoiceLocalService
Throws:
com.liferay.portal.SystemException

getPollsChoicePersistence

public com.liferay.portlet.polls.service.persistence.PollsChoicePersistence getPollsChoicePersistence()

setPollsChoicePersistence

public void setPollsChoicePersistence(com.liferay.portlet.polls.service.persistence.PollsChoicePersistence pollsChoicePersistence)

getPollsChoiceFinder

public com.liferay.portlet.polls.service.persistence.PollsChoiceFinder getPollsChoiceFinder()

setPollsChoiceFinder

public void setPollsChoiceFinder(com.liferay.portlet.polls.service.persistence.PollsChoiceFinder pollsChoiceFinder)

getPollsQuestionLocalService

public com.liferay.portlet.polls.service.PollsQuestionLocalService getPollsQuestionLocalService()

setPollsQuestionLocalService

public void setPollsQuestionLocalService(com.liferay.portlet.polls.service.PollsQuestionLocalService pollsQuestionLocalService)

getPollsQuestionService

public com.liferay.portlet.polls.service.PollsQuestionService getPollsQuestionService()

setPollsQuestionService

public void setPollsQuestionService(com.liferay.portlet.polls.service.PollsQuestionService pollsQuestionService)

getPollsQuestionPersistence

public com.liferay.portlet.polls.service.persistence.PollsQuestionPersistence getPollsQuestionPersistence()

setPollsQuestionPersistence

public void setPollsQuestionPersistence(com.liferay.portlet.polls.service.persistence.PollsQuestionPersistence pollsQuestionPersistence)

getPollsVoteLocalService

public com.liferay.portlet.polls.service.PollsVoteLocalService getPollsVoteLocalService()

setPollsVoteLocalService

public void setPollsVoteLocalService(com.liferay.portlet.polls.service.PollsVoteLocalService pollsVoteLocalService)

getPollsVoteService

public com.liferay.portlet.polls.service.PollsVoteService getPollsVoteService()

setPollsVoteService

public void setPollsVoteService(com.liferay.portlet.polls.service.PollsVoteService pollsVoteService)

getPollsVotePersistence

public com.liferay.portlet.polls.service.persistence.PollsVotePersistence getPollsVotePersistence()

setPollsVotePersistence

public void setPollsVotePersistence(com.liferay.portlet.polls.service.persistence.PollsVotePersistence pollsVotePersistence)

getCounterLocalService

public com.liferay.counter.service.CounterLocalService getCounterLocalService()

setCounterLocalService

public void setCounterLocalService(com.liferay.counter.service.CounterLocalService counterLocalService)

getCounterService

public com.liferay.counter.service.CounterService getCounterService()

setCounterService

public void setCounterService(com.liferay.counter.service.CounterService counterService)

afterPropertiesSet

public void afterPropertiesSet()
Specified by:
afterPropertiesSet in interface org.springframework.beans.factory.InitializingBean