001    /**
002     * Copyright (c) 2000-2010 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.imagegallery.model;
016    
017    import com.liferay.portal.kernel.annotation.AutoEscape;
018    import com.liferay.portal.kernel.exception.SystemException;
019    import com.liferay.portal.model.BaseModel;
020    import com.liferay.portal.service.ServiceContext;
021    
022    import com.liferay.portlet.expando.model.ExpandoBridge;
023    
024    import java.io.Serializable;
025    
026    import java.util.Date;
027    
028    /**
029     * The base model interface for the IGImage service. Represents a row in the "IGImage" database table, with each column mapped to a property of this class.
030     *
031     * <p>
032     * This interface and its corresponding implementation {@link com.liferay.portlet.imagegallery.model.impl.IGImageModelImpl} 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.imagegallery.model.impl.IGImageImpl}.
033     * </p>
034     *
035     * <p>
036     * Never modify or reference this interface directly. All methods that expect a i g image model instance should use the {@link IGImage} interface instead.
037     * </p>
038     *
039     * @author Brian Wing Shun Chan
040     * @see IGImage
041     * @see com.liferay.portlet.imagegallery.model.impl.IGImageImpl
042     * @see com.liferay.portlet.imagegallery.model.impl.IGImageModelImpl
043     * @generated
044     */
045    public interface IGImageModel extends BaseModel<IGImage> {
046            /**
047             * Gets the primary key of this i g image.
048             *
049             * @return the primary key of this i g image
050             */
051            public long getPrimaryKey();
052    
053            /**
054             * Sets the primary key of this i g image
055             *
056             * @param pk the primary key of this i g image
057             */
058            public void setPrimaryKey(long pk);
059    
060            /**
061             * Gets the uuid of this i g image.
062             *
063             * @return the uuid of this i g image
064             */
065            @AutoEscape
066            public String getUuid();
067    
068            /**
069             * Sets the uuid of this i g image.
070             *
071             * @param uuid the uuid of this i g image
072             */
073            public void setUuid(String uuid);
074    
075            /**
076             * Gets the image id of this i g image.
077             *
078             * @return the image id of this i g image
079             */
080            public long getImageId();
081    
082            /**
083             * Sets the image id of this i g image.
084             *
085             * @param imageId the image id of this i g image
086             */
087            public void setImageId(long imageId);
088    
089            /**
090             * Gets the group id of this i g image.
091             *
092             * @return the group id of this i g image
093             */
094            public long getGroupId();
095    
096            /**
097             * Sets the group id of this i g image.
098             *
099             * @param groupId the group id of this i g image
100             */
101            public void setGroupId(long groupId);
102    
103            /**
104             * Gets the company id of this i g image.
105             *
106             * @return the company id of this i g image
107             */
108            public long getCompanyId();
109    
110            /**
111             * Sets the company id of this i g image.
112             *
113             * @param companyId the company id of this i g image
114             */
115            public void setCompanyId(long companyId);
116    
117            /**
118             * Gets the user id of this i g image.
119             *
120             * @return the user id of this i g image
121             */
122            public long getUserId();
123    
124            /**
125             * Sets the user id of this i g image.
126             *
127             * @param userId the user id of this i g image
128             */
129            public void setUserId(long userId);
130    
131            /**
132             * Gets the user uuid of this i g image.
133             *
134             * @return the user uuid of this i g image
135             * @throws SystemException if a system exception occurred
136             */
137            public String getUserUuid() throws SystemException;
138    
139            /**
140             * Sets the user uuid of this i g image.
141             *
142             * @param userUuid the user uuid of this i g image
143             */
144            public void setUserUuid(String userUuid);
145    
146            /**
147             * Gets the create date of this i g image.
148             *
149             * @return the create date of this i g image
150             */
151            public Date getCreateDate();
152    
153            /**
154             * Sets the create date of this i g image.
155             *
156             * @param createDate the create date of this i g image
157             */
158            public void setCreateDate(Date createDate);
159    
160            /**
161             * Gets the modified date of this i g image.
162             *
163             * @return the modified date of this i g image
164             */
165            public Date getModifiedDate();
166    
167            /**
168             * Sets the modified date of this i g image.
169             *
170             * @param modifiedDate the modified date of this i g image
171             */
172            public void setModifiedDate(Date modifiedDate);
173    
174            /**
175             * Gets the folder id of this i g image.
176             *
177             * @return the folder id of this i g image
178             */
179            public long getFolderId();
180    
181            /**
182             * Sets the folder id of this i g image.
183             *
184             * @param folderId the folder id of this i g image
185             */
186            public void setFolderId(long folderId);
187    
188            /**
189             * Gets the name of this i g image.
190             *
191             * @return the name of this i g image
192             */
193            @AutoEscape
194            public String getName();
195    
196            /**
197             * Sets the name of this i g image.
198             *
199             * @param name the name of this i g image
200             */
201            public void setName(String name);
202    
203            /**
204             * Gets the description of this i g image.
205             *
206             * @return the description of this i g image
207             */
208            @AutoEscape
209            public String getDescription();
210    
211            /**
212             * Sets the description of this i g image.
213             *
214             * @param description the description of this i g image
215             */
216            public void setDescription(String description);
217    
218            /**
219             * Gets the small image id of this i g image.
220             *
221             * @return the small image id of this i g image
222             */
223            public long getSmallImageId();
224    
225            /**
226             * Sets the small image id of this i g image.
227             *
228             * @param smallImageId the small image id of this i g image
229             */
230            public void setSmallImageId(long smallImageId);
231    
232            /**
233             * Gets the large image id of this i g image.
234             *
235             * @return the large image id of this i g image
236             */
237            public long getLargeImageId();
238    
239            /**
240             * Sets the large image id of this i g image.
241             *
242             * @param largeImageId the large image id of this i g image
243             */
244            public void setLargeImageId(long largeImageId);
245    
246            /**
247             * Gets the custom1 image id of this i g image.
248             *
249             * @return the custom1 image id of this i g image
250             */
251            public long getCustom1ImageId();
252    
253            /**
254             * Sets the custom1 image id of this i g image.
255             *
256             * @param custom1ImageId the custom1 image id of this i g image
257             */
258            public void setCustom1ImageId(long custom1ImageId);
259    
260            /**
261             * Gets the custom2 image id of this i g image.
262             *
263             * @return the custom2 image id of this i g image
264             */
265            public long getCustom2ImageId();
266    
267            /**
268             * Sets the custom2 image id of this i g image.
269             *
270             * @param custom2ImageId the custom2 image id of this i g image
271             */
272            public void setCustom2ImageId(long custom2ImageId);
273    
274            /**
275             * Gets a copy of this i g image as an escaped model instance by wrapping it with an {@link com.liferay.portal.kernel.bean.AutoEscapeBeanHandler}.
276             *
277             * @return the escaped model instance
278             * @see com.liferay.portal.kernel.bean.AutoEscapeBeanHandler
279             */
280            public IGImage toEscapedModel();
281    
282            public boolean isNew();
283    
284            public void setNew(boolean n);
285    
286            public boolean isCachedModel();
287    
288            public void setCachedModel(boolean cachedModel);
289    
290            public boolean isEscapedModel();
291    
292            public void setEscapedModel(boolean escapedModel);
293    
294            public Serializable getPrimaryKeyObj();
295    
296            public ExpandoBridge getExpandoBridge();
297    
298            public void setExpandoBridgeAttributes(ServiceContext serviceContext);
299    
300            public Object clone();
301    
302            public int compareTo(IGImage igImage);
303    
304            public int hashCode();
305    
306            public String toString();
307    
308            public String toXmlString();
309    }