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