001: /**
002: * Copyright (c) 2000-2008 Liferay, Inc. All rights reserved.
003: *
004: * Permission is hereby granted, free of charge, to any person obtaining a copy
005: * of this software and associated documentation files (the "Software"), to deal
006: * in the Software without restriction, including without limitation the rights
007: * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
008: * copies of the Software, and to permit persons to whom the Software is
009: * furnished to do so, subject to the following conditions:
010: *
011: * The above copyright notice and this permission notice shall be included in
012: * all copies or substantial portions of the Software.
013: *
014: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
015: * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
016: * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
017: * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
018: * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
019: * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
020: * SOFTWARE.
021: */package com.liferay.portlet.polls.service;
022:
023: /**
024: * <a href="PollsChoiceLocalService.java.html"><b><i>View Source</i></b></a>
025: *
026: * <p>
027: * ServiceBuilder generated this class. Modifications in this class will be
028: * overwritten the next time is generated.
029: * </p>
030: *
031: * <p>
032: * This interface defines the service. The default implementation is
033: * <code>com.liferay.portlet.polls.service.impl.PollsChoiceLocalServiceImpl</code>.
034: * Modify methods in that class and rerun ServiceBuilder to populate this class
035: * and all other generated classes.
036: * </p>
037: *
038: * <p>
039: * This is a local service. Methods of this service will not have security checks based on the propagated JAAS credentials because this service can only be accessed from within the same VM.
040: * </p>
041: *
042: * @author Brian Wing Shun Chan
043: *
044: * @see com.liferay.portlet.polls.service.PollsChoiceLocalServiceFactory
045: * @see com.liferay.portlet.polls.service.PollsChoiceLocalServiceUtil
046: *
047: */
048: public interface PollsChoiceLocalService {
049: public com.liferay.portlet.polls.model.PollsChoice addPollsChoice(
050: com.liferay.portlet.polls.model.PollsChoice model)
051: throws com.liferay.portal.SystemException;
052:
053: public java.util.List dynamicQuery(
054: com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer)
055: throws com.liferay.portal.SystemException;
056:
057: public java.util.List dynamicQuery(
058: com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer,
059: int begin, int end)
060: throws com.liferay.portal.SystemException;
061:
062: public com.liferay.portlet.polls.model.PollsChoice updatePollsChoice(
063: com.liferay.portlet.polls.model.PollsChoice model)
064: throws com.liferay.portal.SystemException;
065:
066: public com.liferay.portlet.polls.service.persistence.PollsChoicePersistence getPollsChoicePersistence();
067:
068: public void setPollsChoicePersistence(
069: com.liferay.portlet.polls.service.persistence.PollsChoicePersistence pollsChoicePersistence);
070:
071: public com.liferay.portlet.polls.service.persistence.PollsChoiceFinder getPollsChoiceFinder();
072:
073: public void setPollsChoiceFinder(
074: com.liferay.portlet.polls.service.persistence.PollsChoiceFinder pollsChoiceFinder);
075:
076: public com.liferay.portlet.polls.service.persistence.PollsQuestionPersistence getPollsQuestionPersistence();
077:
078: public void setPollsQuestionPersistence(
079: com.liferay.portlet.polls.service.persistence.PollsQuestionPersistence pollsQuestionPersistence);
080:
081: public com.liferay.portlet.polls.service.persistence.PollsVotePersistence getPollsVotePersistence();
082:
083: public void setPollsVotePersistence(
084: com.liferay.portlet.polls.service.persistence.PollsVotePersistence pollsVotePersistence);
085:
086: public void afterPropertiesSet();
087:
088: public com.liferay.portlet.polls.model.PollsChoice addChoice(
089: long questionId, java.lang.String name,
090: java.lang.String description)
091: throws com.liferay.portal.SystemException,
092: com.liferay.portal.PortalException;
093:
094: public com.liferay.portlet.polls.model.PollsChoice addChoice(
095: java.lang.String uuid, long questionId,
096: java.lang.String name, java.lang.String description)
097: throws com.liferay.portal.SystemException,
098: com.liferay.portal.PortalException;
099:
100: public com.liferay.portlet.polls.model.PollsChoice getChoice(
101: long choiceId) throws com.liferay.portal.SystemException,
102: com.liferay.portal.PortalException;
103:
104: public java.util.List getChoices(long questionId)
105: throws com.liferay.portal.SystemException;
106:
107: public int getChoicesCount(long questionId)
108: throws com.liferay.portal.SystemException;
109:
110: public com.liferay.portlet.polls.model.PollsChoice updateChoice(
111: long choiceId, long questionId, java.lang.String name,
112: java.lang.String description)
113: throws com.liferay.portal.SystemException,
114: com.liferay.portal.PortalException;
115: }
|