001    /**
002     * Copyright (c) 2000-present 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.softwarecatalog.model;
016    
017    import aQute.bnd.annotation.ProviderType;
018    
019    import com.liferay.portal.kernel.bean.AutoEscape;
020    import com.liferay.portal.model.BaseModel;
021    import com.liferay.portal.model.CacheModel;
022    import com.liferay.portal.model.GroupedModel;
023    import com.liferay.portal.service.ServiceContext;
024    
025    import com.liferay.portlet.expando.model.ExpandoBridge;
026    
027    import java.io.Serializable;
028    
029    import java.util.Date;
030    
031    /**
032     * The base model interface for the SCProductEntry service. Represents a row in the "SCProductEntry" database table, with each column mapped to a property of this class.
033     *
034     * <p>
035     * This interface and its corresponding implementation {@link com.liferay.portlet.softwarecatalog.model.impl.SCProductEntryModelImpl} 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.softwarecatalog.model.impl.SCProductEntryImpl}.
036     * </p>
037     *
038     * @author Brian Wing Shun Chan
039     * @see SCProductEntry
040     * @see com.liferay.portlet.softwarecatalog.model.impl.SCProductEntryImpl
041     * @see com.liferay.portlet.softwarecatalog.model.impl.SCProductEntryModelImpl
042     * @generated
043     */
044    @ProviderType
045    public interface SCProductEntryModel extends BaseModel<SCProductEntry>,
046            GroupedModel {
047            /*
048             * NOTE FOR DEVELOPERS:
049             *
050             * Never modify or reference this interface directly. All methods that expect a s c product entry model instance should use the {@link SCProductEntry} interface instead.
051             */
052    
053            /**
054             * Returns the primary key of this s c product entry.
055             *
056             * @return the primary key of this s c product entry
057             */
058            public long getPrimaryKey();
059    
060            /**
061             * Sets the primary key of this s c product entry.
062             *
063             * @param primaryKey the primary key of this s c product entry
064             */
065            public void setPrimaryKey(long primaryKey);
066    
067            /**
068             * Returns the product entry ID of this s c product entry.
069             *
070             * @return the product entry ID of this s c product entry
071             */
072            public long getProductEntryId();
073    
074            /**
075             * Sets the product entry ID of this s c product entry.
076             *
077             * @param productEntryId the product entry ID of this s c product entry
078             */
079            public void setProductEntryId(long productEntryId);
080    
081            /**
082             * Returns the group ID of this s c product entry.
083             *
084             * @return the group ID of this s c product entry
085             */
086            @Override
087            public long getGroupId();
088    
089            /**
090             * Sets the group ID of this s c product entry.
091             *
092             * @param groupId the group ID of this s c product entry
093             */
094            @Override
095            public void setGroupId(long groupId);
096    
097            /**
098             * Returns the company ID of this s c product entry.
099             *
100             * @return the company ID of this s c product entry
101             */
102            @Override
103            public long getCompanyId();
104    
105            /**
106             * Sets the company ID of this s c product entry.
107             *
108             * @param companyId the company ID of this s c product entry
109             */
110            @Override
111            public void setCompanyId(long companyId);
112    
113            /**
114             * Returns the user ID of this s c product entry.
115             *
116             * @return the user ID of this s c product entry
117             */
118            @Override
119            public long getUserId();
120    
121            /**
122             * Sets the user ID of this s c product entry.
123             *
124             * @param userId the user ID of this s c product entry
125             */
126            @Override
127            public void setUserId(long userId);
128    
129            /**
130             * Returns the user uuid of this s c product entry.
131             *
132             * @return the user uuid of this s c product entry
133             */
134            @Override
135            public String getUserUuid();
136    
137            /**
138             * Sets the user uuid of this s c product entry.
139             *
140             * @param userUuid the user uuid of this s c product entry
141             */
142            @Override
143            public void setUserUuid(String userUuid);
144    
145            /**
146             * Returns the user name of this s c product entry.
147             *
148             * @return the user name of this s c product entry
149             */
150            @AutoEscape
151            @Override
152            public String getUserName();
153    
154            /**
155             * Sets the user name of this s c product entry.
156             *
157             * @param userName the user name of this s c product entry
158             */
159            @Override
160            public void setUserName(String userName);
161    
162            /**
163             * Returns the create date of this s c product entry.
164             *
165             * @return the create date of this s c product entry
166             */
167            @Override
168            public Date getCreateDate();
169    
170            /**
171             * Sets the create date of this s c product entry.
172             *
173             * @param createDate the create date of this s c product entry
174             */
175            @Override
176            public void setCreateDate(Date createDate);
177    
178            /**
179             * Returns the modified date of this s c product entry.
180             *
181             * @return the modified date of this s c product entry
182             */
183            @Override
184            public Date getModifiedDate();
185    
186            /**
187             * Sets the modified date of this s c product entry.
188             *
189             * @param modifiedDate the modified date of this s c product entry
190             */
191            @Override
192            public void setModifiedDate(Date modifiedDate);
193    
194            /**
195             * Returns the name of this s c product entry.
196             *
197             * @return the name of this s c product entry
198             */
199            @AutoEscape
200            public String getName();
201    
202            /**
203             * Sets the name of this s c product entry.
204             *
205             * @param name the name of this s c product entry
206             */
207            public void setName(String name);
208    
209            /**
210             * Returns the type of this s c product entry.
211             *
212             * @return the type of this s c product entry
213             */
214            @AutoEscape
215            public String getType();
216    
217            /**
218             * Sets the type of this s c product entry.
219             *
220             * @param type the type of this s c product entry
221             */
222            public void setType(String type);
223    
224            /**
225             * Returns the tags of this s c product entry.
226             *
227             * @return the tags of this s c product entry
228             */
229            @AutoEscape
230            public String getTags();
231    
232            /**
233             * Sets the tags of this s c product entry.
234             *
235             * @param tags the tags of this s c product entry
236             */
237            public void setTags(String tags);
238    
239            /**
240             * Returns the short description of this s c product entry.
241             *
242             * @return the short description of this s c product entry
243             */
244            @AutoEscape
245            public String getShortDescription();
246    
247            /**
248             * Sets the short description of this s c product entry.
249             *
250             * @param shortDescription the short description of this s c product entry
251             */
252            public void setShortDescription(String shortDescription);
253    
254            /**
255             * Returns the long description of this s c product entry.
256             *
257             * @return the long description of this s c product entry
258             */
259            @AutoEscape
260            public String getLongDescription();
261    
262            /**
263             * Sets the long description of this s c product entry.
264             *
265             * @param longDescription the long description of this s c product entry
266             */
267            public void setLongDescription(String longDescription);
268    
269            /**
270             * Returns the page u r l of this s c product entry.
271             *
272             * @return the page u r l of this s c product entry
273             */
274            @AutoEscape
275            public String getPageURL();
276    
277            /**
278             * Sets the page u r l of this s c product entry.
279             *
280             * @param pageURL the page u r l of this s c product entry
281             */
282            public void setPageURL(String pageURL);
283    
284            /**
285             * Returns the author of this s c product entry.
286             *
287             * @return the author of this s c product entry
288             */
289            @AutoEscape
290            public String getAuthor();
291    
292            /**
293             * Sets the author of this s c product entry.
294             *
295             * @param author the author of this s c product entry
296             */
297            public void setAuthor(String author);
298    
299            /**
300             * Returns the repo group ID of this s c product entry.
301             *
302             * @return the repo group ID of this s c product entry
303             */
304            @AutoEscape
305            public String getRepoGroupId();
306    
307            /**
308             * Sets the repo group ID of this s c product entry.
309             *
310             * @param repoGroupId the repo group ID of this s c product entry
311             */
312            public void setRepoGroupId(String repoGroupId);
313    
314            /**
315             * Returns the repo artifact ID of this s c product entry.
316             *
317             * @return the repo artifact ID of this s c product entry
318             */
319            @AutoEscape
320            public String getRepoArtifactId();
321    
322            /**
323             * Sets the repo artifact ID of this s c product entry.
324             *
325             * @param repoArtifactId the repo artifact ID of this s c product entry
326             */
327            public void setRepoArtifactId(String repoArtifactId);
328    
329            @Override
330            public boolean isNew();
331    
332            @Override
333            public void setNew(boolean n);
334    
335            @Override
336            public boolean isCachedModel();
337    
338            @Override
339            public void setCachedModel(boolean cachedModel);
340    
341            @Override
342            public boolean isEscapedModel();
343    
344            @Override
345            public Serializable getPrimaryKeyObj();
346    
347            @Override
348            public void setPrimaryKeyObj(Serializable primaryKeyObj);
349    
350            @Override
351            public ExpandoBridge getExpandoBridge();
352    
353            @Override
354            public void setExpandoBridgeAttributes(BaseModel<?> baseModel);
355    
356            @Override
357            public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge);
358    
359            @Override
360            public void setExpandoBridgeAttributes(ServiceContext serviceContext);
361    
362            @Override
363            public Object clone();
364    
365            @Override
366            public int compareTo(
367                    com.liferay.portlet.softwarecatalog.model.SCProductEntry scProductEntry);
368    
369            @Override
370            public int hashCode();
371    
372            @Override
373            public CacheModel<com.liferay.portlet.softwarecatalog.model.SCProductEntry> toCacheModel();
374    
375            @Override
376            public com.liferay.portlet.softwarecatalog.model.SCProductEntry toEscapedModel();
377    
378            @Override
379            public com.liferay.portlet.softwarecatalog.model.SCProductEntry toUnescapedModel();
380    
381            @Override
382            public String toString();
383    
384            @Override
385            public String toXmlString();
386    }