001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.polls.model;
016    
017    import com.liferay.portal.kernel.bean.AutoEscape;
018    import com.liferay.portal.kernel.exception.SystemException;
019    import com.liferay.portal.model.BaseModel;
020    import com.liferay.portal.model.CacheModel;
021    import com.liferay.portal.model.StagedGroupedModel;
022    import com.liferay.portal.service.ServiceContext;
023    
024    import com.liferay.portlet.expando.model.ExpandoBridge;
025    
026    import java.io.Serializable;
027    
028    import java.util.Date;
029    
030    /**
031     * The base model interface for the PollsVote service. Represents a row in the "PollsVote" database table, with each column mapped to a property of this class.
032     *
033     * <p>
034     * This interface and its corresponding implementation {@link com.liferay.portlet.polls.model.impl.PollsVoteModelImpl} exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in {@link com.liferay.portlet.polls.model.impl.PollsVoteImpl}.
035     * </p>
036     *
037     * @author Brian Wing Shun Chan
038     * @see PollsVote
039     * @see com.liferay.portlet.polls.model.impl.PollsVoteImpl
040     * @see com.liferay.portlet.polls.model.impl.PollsVoteModelImpl
041     * @generated
042     */
043    public interface PollsVoteModel extends BaseModel<PollsVote>, StagedGroupedModel {
044            /*
045             * NOTE FOR DEVELOPERS:
046             *
047             * Never modify or reference this interface directly. All methods that expect a polls vote model instance should use the {@link PollsVote} interface instead.
048             */
049    
050            /**
051             * Returns the primary key of this polls vote.
052             *
053             * @return the primary key of this polls vote
054             */
055            public long getPrimaryKey();
056    
057            /**
058             * Sets the primary key of this polls vote.
059             *
060             * @param primaryKey the primary key of this polls vote
061             */
062            public void setPrimaryKey(long primaryKey);
063    
064            /**
065             * Returns the uuid of this polls vote.
066             *
067             * @return the uuid of this polls vote
068             */
069            @AutoEscape
070            @Override
071            public String getUuid();
072    
073            /**
074             * Sets the uuid of this polls vote.
075             *
076             * @param uuid the uuid of this polls vote
077             */
078            @Override
079            public void setUuid(String uuid);
080    
081            /**
082             * Returns the vote ID of this polls vote.
083             *
084             * @return the vote ID of this polls vote
085             */
086            public long getVoteId();
087    
088            /**
089             * Sets the vote ID of this polls vote.
090             *
091             * @param voteId the vote ID of this polls vote
092             */
093            public void setVoteId(long voteId);
094    
095            /**
096             * Returns the group ID of this polls vote.
097             *
098             * @return the group ID of this polls vote
099             */
100            @Override
101            public long getGroupId();
102    
103            /**
104             * Sets the group ID of this polls vote.
105             *
106             * @param groupId the group ID of this polls vote
107             */
108            @Override
109            public void setGroupId(long groupId);
110    
111            /**
112             * Returns the company ID of this polls vote.
113             *
114             * @return the company ID of this polls vote
115             */
116            @Override
117            public long getCompanyId();
118    
119            /**
120             * Sets the company ID of this polls vote.
121             *
122             * @param companyId the company ID of this polls vote
123             */
124            @Override
125            public void setCompanyId(long companyId);
126    
127            /**
128             * Returns the user ID of this polls vote.
129             *
130             * @return the user ID of this polls vote
131             */
132            @Override
133            public long getUserId();
134    
135            /**
136             * Sets the user ID of this polls vote.
137             *
138             * @param userId the user ID of this polls vote
139             */
140            @Override
141            public void setUserId(long userId);
142    
143            /**
144             * Returns the user uuid of this polls vote.
145             *
146             * @return the user uuid of this polls vote
147             * @throws SystemException if a system exception occurred
148             */
149            @Override
150            public String getUserUuid() throws SystemException;
151    
152            /**
153             * Sets the user uuid of this polls vote.
154             *
155             * @param userUuid the user uuid of this polls vote
156             */
157            @Override
158            public void setUserUuid(String userUuid);
159    
160            /**
161             * Returns the user name of this polls vote.
162             *
163             * @return the user name of this polls vote
164             */
165            @AutoEscape
166            @Override
167            public String getUserName();
168    
169            /**
170             * Sets the user name of this polls vote.
171             *
172             * @param userName the user name of this polls vote
173             */
174            @Override
175            public void setUserName(String userName);
176    
177            /**
178             * Returns the create date of this polls vote.
179             *
180             * @return the create date of this polls vote
181             */
182            @Override
183            public Date getCreateDate();
184    
185            /**
186             * Sets the create date of this polls vote.
187             *
188             * @param createDate the create date of this polls vote
189             */
190            @Override
191            public void setCreateDate(Date createDate);
192    
193            /**
194             * Returns the modified date of this polls vote.
195             *
196             * @return the modified date of this polls vote
197             */
198            @Override
199            public Date getModifiedDate();
200    
201            /**
202             * Sets the modified date of this polls vote.
203             *
204             * @param modifiedDate the modified date of this polls vote
205             */
206            @Override
207            public void setModifiedDate(Date modifiedDate);
208    
209            /**
210             * Returns the question ID of this polls vote.
211             *
212             * @return the question ID of this polls vote
213             */
214            public long getQuestionId();
215    
216            /**
217             * Sets the question ID of this polls vote.
218             *
219             * @param questionId the question ID of this polls vote
220             */
221            public void setQuestionId(long questionId);
222    
223            /**
224             * Returns the choice ID of this polls vote.
225             *
226             * @return the choice ID of this polls vote
227             */
228            public long getChoiceId();
229    
230            /**
231             * Sets the choice ID of this polls vote.
232             *
233             * @param choiceId the choice ID of this polls vote
234             */
235            public void setChoiceId(long choiceId);
236    
237            /**
238             * Returns the vote date of this polls vote.
239             *
240             * @return the vote date of this polls vote
241             */
242            public Date getVoteDate();
243    
244            /**
245             * Sets the vote date of this polls vote.
246             *
247             * @param voteDate the vote date of this polls vote
248             */
249            public void setVoteDate(Date voteDate);
250    
251            @Override
252            public boolean isNew();
253    
254            @Override
255            public void setNew(boolean n);
256    
257            @Override
258            public boolean isCachedModel();
259    
260            @Override
261            public void setCachedModel(boolean cachedModel);
262    
263            @Override
264            public boolean isEscapedModel();
265    
266            @Override
267            public Serializable getPrimaryKeyObj();
268    
269            @Override
270            public void setPrimaryKeyObj(Serializable primaryKeyObj);
271    
272            @Override
273            public ExpandoBridge getExpandoBridge();
274    
275            @Override
276            public void setExpandoBridgeAttributes(BaseModel<?> baseModel);
277    
278            @Override
279            public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge);
280    
281            @Override
282            public void setExpandoBridgeAttributes(ServiceContext serviceContext);
283    
284            @Override
285            public Object clone();
286    
287            @Override
288            public int compareTo(PollsVote pollsVote);
289    
290            @Override
291            public int hashCode();
292    
293            @Override
294            public CacheModel<PollsVote> toCacheModel();
295    
296            @Override
297            public PollsVote toEscapedModel();
298    
299            @Override
300            public PollsVote toUnescapedModel();
301    
302            @Override
303            public String toString();
304    
305            @Override
306            public String toXmlString();
307    }