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.model.ShardedModel; 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, ShardedModel { 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 */ 135 @Override 136 public String getUserUuid(); 137 138 /** 139 * Sets the user uuid of this s c framework version. 140 * 141 * @param userUuid the user uuid of this s c framework version 142 */ 143 @Override 144 public void setUserUuid(String userUuid); 145 146 /** 147 * Returns the user name of this s c framework version. 148 * 149 * @return the user name of this s c framework version 150 */ 151 @AutoEscape 152 @Override 153 public String getUserName(); 154 155 /** 156 * Sets the user name of this s c framework version. 157 * 158 * @param userName the user name of this s c framework version 159 */ 160 @Override 161 public void setUserName(String userName); 162 163 /** 164 * Returns the create date of this s c framework version. 165 * 166 * @return the create date of this s c framework version 167 */ 168 @Override 169 public Date getCreateDate(); 170 171 /** 172 * Sets the create date of this s c framework version. 173 * 174 * @param createDate the create date of this s c framework version 175 */ 176 @Override 177 public void setCreateDate(Date createDate); 178 179 /** 180 * Returns the modified date of this s c framework version. 181 * 182 * @return the modified date of this s c framework version 183 */ 184 @Override 185 public Date getModifiedDate(); 186 187 /** 188 * Sets the modified date of this s c framework version. 189 * 190 * @param modifiedDate the modified date of this s c framework version 191 */ 192 @Override 193 public void setModifiedDate(Date modifiedDate); 194 195 /** 196 * Returns the name of this s c framework version. 197 * 198 * @return the name of this s c framework version 199 */ 200 @AutoEscape 201 public String getName(); 202 203 /** 204 * Sets the name of this s c framework version. 205 * 206 * @param name the name of this s c framework version 207 */ 208 public void setName(String name); 209 210 /** 211 * Returns the url of this s c framework version. 212 * 213 * @return the url of this s c framework version 214 */ 215 @AutoEscape 216 public String getUrl(); 217 218 /** 219 * Sets the url of this s c framework version. 220 * 221 * @param url the url of this s c framework version 222 */ 223 public void setUrl(String url); 224 225 /** 226 * Returns the active of this s c framework version. 227 * 228 * @return the active of this s c framework version 229 */ 230 public boolean getActive(); 231 232 /** 233 * Returns <code>true</code> if this s c framework version is active. 234 * 235 * @return <code>true</code> if this s c framework version is active; <code>false</code> otherwise 236 */ 237 public boolean isActive(); 238 239 /** 240 * Sets whether this s c framework version is active. 241 * 242 * @param active the active of this s c framework version 243 */ 244 public void setActive(boolean active); 245 246 /** 247 * Returns the priority of this s c framework version. 248 * 249 * @return the priority of this s c framework version 250 */ 251 public int getPriority(); 252 253 /** 254 * Sets the priority of this s c framework version. 255 * 256 * @param priority the priority of this s c framework version 257 */ 258 public void setPriority(int priority); 259 260 @Override 261 public boolean isNew(); 262 263 @Override 264 public void setNew(boolean n); 265 266 @Override 267 public boolean isCachedModel(); 268 269 @Override 270 public void setCachedModel(boolean cachedModel); 271 272 @Override 273 public boolean isEscapedModel(); 274 275 @Override 276 public Serializable getPrimaryKeyObj(); 277 278 @Override 279 public void setPrimaryKeyObj(Serializable primaryKeyObj); 280 281 @Override 282 public ExpandoBridge getExpandoBridge(); 283 284 @Override 285 public void setExpandoBridgeAttributes(BaseModel<?> baseModel); 286 287 @Override 288 public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge); 289 290 @Override 291 public void setExpandoBridgeAttributes(ServiceContext serviceContext); 292 293 @Override 294 public Object clone(); 295 296 @Override 297 public int compareTo( 298 com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion scFrameworkVersion); 299 300 @Override 301 public int hashCode(); 302 303 @Override 304 public CacheModel<com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion> toCacheModel(); 305 306 @Override 307 public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion toEscapedModel(); 308 309 @Override 310 public com.liferay.portlet.softwarecatalog.model.SCFrameworkVersion toUnescapedModel(); 311 312 @Override 313 public String toString(); 314 315 @Override 316 public String toXmlString(); 317 }