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