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.softwarecatalog.model;
016    
017    import aQute.bnd.annotation.ProviderType;
018    
019    import com.liferay.portal.model.BaseModel;
020    import com.liferay.portal.model.CacheModel;
021    import com.liferay.portal.service.ServiceContext;
022    
023    import com.liferay.portlet.expando.model.ExpandoBridge;
024    
025    import java.io.Serializable;
026    
027    /**
028     * The base model interface for the SCProductScreenshot service. Represents a row in the "SCProductScreenshot" database table, with each column mapped to a property of this class.
029     *
030     * <p>
031     * This interface and its corresponding implementation {@link com.liferay.portlet.softwarecatalog.model.impl.SCProductScreenshotModelImpl} 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.SCProductScreenshotImpl}.
032     * </p>
033     *
034     * @author Brian Wing Shun Chan
035     * @see SCProductScreenshot
036     * @see com.liferay.portlet.softwarecatalog.model.impl.SCProductScreenshotImpl
037     * @see com.liferay.portlet.softwarecatalog.model.impl.SCProductScreenshotModelImpl
038     * @generated
039     */
040    @ProviderType
041    public interface SCProductScreenshotModel extends BaseModel<SCProductScreenshot> {
042            /*
043             * NOTE FOR DEVELOPERS:
044             *
045             * Never modify or reference this interface directly. All methods that expect a s c product screenshot model instance should use the {@link SCProductScreenshot} interface instead.
046             */
047    
048            /**
049             * Returns the primary key of this s c product screenshot.
050             *
051             * @return the primary key of this s c product screenshot
052             */
053            public long getPrimaryKey();
054    
055            /**
056             * Sets the primary key of this s c product screenshot.
057             *
058             * @param primaryKey the primary key of this s c product screenshot
059             */
060            public void setPrimaryKey(long primaryKey);
061    
062            /**
063             * Returns the product screenshot ID of this s c product screenshot.
064             *
065             * @return the product screenshot ID of this s c product screenshot
066             */
067            public long getProductScreenshotId();
068    
069            /**
070             * Sets the product screenshot ID of this s c product screenshot.
071             *
072             * @param productScreenshotId the product screenshot ID of this s c product screenshot
073             */
074            public void setProductScreenshotId(long productScreenshotId);
075    
076            /**
077             * Returns the company ID of this s c product screenshot.
078             *
079             * @return the company ID of this s c product screenshot
080             */
081            public long getCompanyId();
082    
083            /**
084             * Sets the company ID of this s c product screenshot.
085             *
086             * @param companyId the company ID of this s c product screenshot
087             */
088            public void setCompanyId(long companyId);
089    
090            /**
091             * Returns the group ID of this s c product screenshot.
092             *
093             * @return the group ID of this s c product screenshot
094             */
095            public long getGroupId();
096    
097            /**
098             * Sets the group ID of this s c product screenshot.
099             *
100             * @param groupId the group ID of this s c product screenshot
101             */
102            public void setGroupId(long groupId);
103    
104            /**
105             * Returns the product entry ID of this s c product screenshot.
106             *
107             * @return the product entry ID of this s c product screenshot
108             */
109            public long getProductEntryId();
110    
111            /**
112             * Sets the product entry ID of this s c product screenshot.
113             *
114             * @param productEntryId the product entry ID of this s c product screenshot
115             */
116            public void setProductEntryId(long productEntryId);
117    
118            /**
119             * Returns the thumbnail ID of this s c product screenshot.
120             *
121             * @return the thumbnail ID of this s c product screenshot
122             */
123            public long getThumbnailId();
124    
125            /**
126             * Sets the thumbnail ID of this s c product screenshot.
127             *
128             * @param thumbnailId the thumbnail ID of this s c product screenshot
129             */
130            public void setThumbnailId(long thumbnailId);
131    
132            /**
133             * Returns the full image ID of this s c product screenshot.
134             *
135             * @return the full image ID of this s c product screenshot
136             */
137            public long getFullImageId();
138    
139            /**
140             * Sets the full image ID of this s c product screenshot.
141             *
142             * @param fullImageId the full image ID of this s c product screenshot
143             */
144            public void setFullImageId(long fullImageId);
145    
146            /**
147             * Returns the priority of this s c product screenshot.
148             *
149             * @return the priority of this s c product screenshot
150             */
151            public int getPriority();
152    
153            /**
154             * Sets the priority of this s c product screenshot.
155             *
156             * @param priority the priority of this s c product screenshot
157             */
158            public void setPriority(int priority);
159    
160            @Override
161            public boolean isNew();
162    
163            @Override
164            public void setNew(boolean n);
165    
166            @Override
167            public boolean isCachedModel();
168    
169            @Override
170            public void setCachedModel(boolean cachedModel);
171    
172            @Override
173            public boolean isEscapedModel();
174    
175            @Override
176            public Serializable getPrimaryKeyObj();
177    
178            @Override
179            public void setPrimaryKeyObj(Serializable primaryKeyObj);
180    
181            @Override
182            public ExpandoBridge getExpandoBridge();
183    
184            @Override
185            public void setExpandoBridgeAttributes(BaseModel<?> baseModel);
186    
187            @Override
188            public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge);
189    
190            @Override
191            public void setExpandoBridgeAttributes(ServiceContext serviceContext);
192    
193            @Override
194            public Object clone();
195    
196            @Override
197            public int compareTo(SCProductScreenshot scProductScreenshot);
198    
199            @Override
200            public int hashCode();
201    
202            @Override
203            public CacheModel<SCProductScreenshot> toCacheModel();
204    
205            @Override
206            public SCProductScreenshot toEscapedModel();
207    
208            @Override
209            public SCProductScreenshot toUnescapedModel();
210    
211            @Override
212            public String toString();
213    
214            @Override
215            public String toXmlString();
216    }