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.kernel.bean.AutoEscape;
020    import com.liferay.portal.kernel.exception.SystemException;
021    import com.liferay.portal.model.BaseModel;
022    import com.liferay.portal.model.CacheModel;
023    import com.liferay.portal.model.GroupedModel;
024    import com.liferay.portal.service.ServiceContext;
025    
026    import com.liferay.portlet.expando.model.ExpandoBridge;
027    
028    import java.io.Serializable;
029    
030    import java.util.Date;
031    
032    /**
033     * The base model interface for the SCFrameworkVersion service. Represents a row in the "SCFrameworkVersion" database table, with each column mapped to a property of this class.
034     *
035     * <p>
036     * This interface and its corresponding implementation {@link com.liferay.portlet.softwarecatalog.model.impl.SCFrameworkVersionModelImpl} 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.SCFrameworkVersionImpl}.
037     * </p>
038     *
039     * @author Brian Wing Shun Chan
040     * @see SCFrameworkVersion
041     * @see com.liferay.portlet.softwarecatalog.model.impl.SCFrameworkVersionImpl
042     * @see com.liferay.portlet.softwarecatalog.model.impl.SCFrameworkVersionModelImpl
043     * @generated
044     */
045    @ProviderType
046    public interface SCFrameworkVersionModel extends BaseModel<SCFrameworkVersion>,
047            GroupedModel {
048            /*
049             * NOTE FOR DEVELOPERS:
050             *
051             * Never modify or reference this interface directly. All methods that expect a s c framework version model instance should use the {@link SCFrameworkVersion} interface instead.
052             */
053    
054            /**
055             * Returns the primary key of this s c framework version.
056             *
057             * @return the primary key of this s c framework version
058             */
059            public long getPrimaryKey();
060    
061            /**
062             * Sets the primary key of this s c framework version.
063             *
064             * @param primaryKey the primary key of this s c framework version
065             */
066            public void setPrimaryKey(long primaryKey);
067    
068            /**
069             * Returns the framework version ID of this s c framework version.
070             *
071             * @return the framework version ID of this s c framework version
072             */
073            public long getFrameworkVersionId();
074    
075            /**
076             * Sets the framework version ID of this s c framework version.
077             *
078             * @param frameworkVersionId the framework version ID of this s c framework version
079             */
080            public void setFrameworkVersionId(long frameworkVersionId);
081    
082            /**
083             * Returns the group ID of this s c framework version.
084             *
085             * @return the group ID of this s c framework version
086             */
087            @Override
088            public long getGroupId();
089    
090            /**
091             * Sets the group ID of this s c framework version.
092             *
093             * @param groupId the group ID of this s c framework version
094             */
095            @Override
096            public void setGroupId(long groupId);
097    
098            /**
099             * Returns the company ID of this s c framework version.
100             *
101             * @return the company ID of this s c framework version
102             */
103            @Override
104            public long getCompanyId();
105    
106            /**
107             * Sets the company ID of this s c framework version.
108             *
109             * @param companyId the company ID of this s c framework version
110             */
111            @Override
112            public void setCompanyId(long companyId);
113    
114            /**
115             * Returns the user ID of this s c framework version.
116             *
117             * @return the user ID of this s c framework version
118             */
119            @Override
120            public long getUserId();
121    
122            /**
123             * Sets the user ID of this s c framework version.
124             *
125             * @param userId the user ID of this s c framework version
126             */
127            @Override
128            public void setUserId(long userId);
129    
130            /**
131             * Returns the user uuid of this s c framework version.
132             *
133             * @return the user uuid of this s c framework version
134             * @throws SystemException if a system exception occurred
135             */
136            @Override
137            public String getUserUuid() throws SystemException;
138    
139            /**
140             * Sets the user uuid of this s c framework version.
141             *
142             * @param userUuid the user uuid of this s c framework version
143             */
144            @Override
145            public void setUserUuid(String userUuid);
146    
147            /**
148             * Returns the user name of this s c framework version.
149             *
150             * @return the user name of this s c framework version
151             */
152            @AutoEscape
153            @Override
154            public String getUserName();
155    
156            /**
157             * Sets the user name of this s c framework version.
158             *
159             * @param userName the user name of this s c framework version
160             */
161            @Override
162            public void setUserName(String userName);
163    
164            /**
165             * Returns the create date of this s c framework version.
166             *
167             * @return the create date of this s c framework version
168             */
169            @Override
170            public Date getCreateDate();
171    
172            /**
173             * Sets the create date of this s c framework version.
174             *
175             * @param createDate the create date of this s c framework version
176             */
177            @Override
178            public void setCreateDate(Date createDate);
179    
180            /**
181             * Returns the modified date of this s c framework version.
182             *
183             * @return the modified date of this s c framework version
184             */
185            @Override
186            public Date getModifiedDate();
187    
188            /**
189             * Sets the modified date of this s c framework version.
190             *
191             * @param modifiedDate the modified date of this s c framework version
192             */
193            @Override
194            public void setModifiedDate(Date modifiedDate);
195    
196            /**
197             * Returns the name of this s c framework version.
198             *
199             * @return the name of this s c framework version
200             */
201            @AutoEscape
202            public String getName();
203    
204            /**
205             * Sets the name of this s c framework version.
206             *
207             * @param name the name of this s c framework version
208             */
209            public void setName(String name);
210    
211            /**
212             * Returns the url of this s c framework version.
213             *
214             * @return the url of this s c framework version
215             */
216            @AutoEscape
217            public String getUrl();
218    
219            /**
220             * Sets the url of this s c framework version.
221             *
222             * @param url the url of this s c framework version
223             */
224            public void setUrl(String url);
225    
226            /**
227             * Returns the active of this s c framework version.
228             *
229             * @return the active of this s c framework version
230             */
231            public boolean getActive();
232    
233            /**
234             * Returns <code>true</code> if this s c framework version is active.
235             *
236             * @return <code>true</code> if this s c framework version is active; <code>false</code> otherwise
237             */
238            public boolean isActive();
239    
240            /**
241             * Sets whether this s c framework version is active.
242             *
243             * @param active the active of this s c framework version
244             */
245            public void setActive(boolean active);
246    
247            /**
248             * Returns the priority of this s c framework version.
249             *
250             * @return the priority of this s c framework version
251             */
252            public int getPriority();
253    
254            /**
255             * Sets the priority of this s c framework version.
256             *
257             * @param priority the priority of this s c framework version
258             */
259            public void setPriority(int priority);
260    
261            @Override
262            public boolean isNew();
263    
264            @Override
265            public void setNew(boolean n);
266    
267            @Override
268            public boolean isCachedModel();
269    
270            @Override
271            public void setCachedModel(boolean cachedModel);
272    
273            @Override
274            public boolean isEscapedModel();
275    
276            @Override
277            public Serializable getPrimaryKeyObj();
278    
279            @Override
280            public void setPrimaryKeyObj(Serializable primaryKeyObj);
281    
282            @Override
283            public ExpandoBridge getExpandoBridge();
284    
285            @Override
286            public void setExpandoBridgeAttributes(BaseModel<?> baseModel);
287    
288            @Override
289            public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge);
290    
291            @Override
292            public void setExpandoBridgeAttributes(ServiceContext serviceContext);
293    
294            @Override
295            public Object clone();
296    
297            @Override
298            public int compareTo(SCFrameworkVersion scFrameworkVersion);
299    
300            @Override
301            public int hashCode();
302    
303            @Override
304            public CacheModel<SCFrameworkVersion> toCacheModel();
305    
306            @Override
307            public SCFrameworkVersion toEscapedModel();
308    
309            @Override
310            public SCFrameworkVersion toUnescapedModel();
311    
312            @Override
313            public String toString();
314    
315            @Override
316            public String toXmlString();
317    }