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.blogs.model; 016 017 import aQute.bnd.annotation.ProviderType; 018 019 import com.liferay.portal.kernel.exception.SystemException; 020 import com.liferay.portal.model.BaseModel; 021 import com.liferay.portal.model.CacheModel; 022 import com.liferay.portal.service.ServiceContext; 023 024 import com.liferay.portlet.expando.model.ExpandoBridge; 025 026 import java.io.Serializable; 027 028 import java.util.Date; 029 030 /** 031 * The base model interface for the BlogsStatsUser service. Represents a row in the "BlogsStatsUser" database table, with each column mapped to a property of this class. 032 * 033 * <p> 034 * This interface and its corresponding implementation {@link com.liferay.portlet.blogs.model.impl.BlogsStatsUserModelImpl} 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.blogs.model.impl.BlogsStatsUserImpl}. 035 * </p> 036 * 037 * @author Brian Wing Shun Chan 038 * @see BlogsStatsUser 039 * @see com.liferay.portlet.blogs.model.impl.BlogsStatsUserImpl 040 * @see com.liferay.portlet.blogs.model.impl.BlogsStatsUserModelImpl 041 * @generated 042 */ 043 @ProviderType 044 public interface BlogsStatsUserModel extends BaseModel<BlogsStatsUser> { 045 /* 046 * NOTE FOR DEVELOPERS: 047 * 048 * Never modify or reference this interface directly. All methods that expect a blogs stats user model instance should use the {@link BlogsStatsUser} interface instead. 049 */ 050 051 /** 052 * Returns the primary key of this blogs stats user. 053 * 054 * @return the primary key of this blogs stats user 055 */ 056 public long getPrimaryKey(); 057 058 /** 059 * Sets the primary key of this blogs stats user. 060 * 061 * @param primaryKey the primary key of this blogs stats user 062 */ 063 public void setPrimaryKey(long primaryKey); 064 065 /** 066 * Returns the stats user ID of this blogs stats user. 067 * 068 * @return the stats user ID of this blogs stats user 069 */ 070 public long getStatsUserId(); 071 072 /** 073 * Sets the stats user ID of this blogs stats user. 074 * 075 * @param statsUserId the stats user ID of this blogs stats user 076 */ 077 public void setStatsUserId(long statsUserId); 078 079 /** 080 * Returns the stats user uuid of this blogs stats user. 081 * 082 * @return the stats user uuid of this blogs stats user 083 * @throws SystemException if a system exception occurred 084 */ 085 public String getStatsUserUuid() throws SystemException; 086 087 /** 088 * Sets the stats user uuid of this blogs stats user. 089 * 090 * @param statsUserUuid the stats user uuid of this blogs stats user 091 */ 092 public void setStatsUserUuid(String statsUserUuid); 093 094 /** 095 * Returns the group ID of this blogs stats user. 096 * 097 * @return the group ID of this blogs stats user 098 */ 099 public long getGroupId(); 100 101 /** 102 * Sets the group ID of this blogs stats user. 103 * 104 * @param groupId the group ID of this blogs stats user 105 */ 106 public void setGroupId(long groupId); 107 108 /** 109 * Returns the company ID of this blogs stats user. 110 * 111 * @return the company ID of this blogs stats user 112 */ 113 public long getCompanyId(); 114 115 /** 116 * Sets the company ID of this blogs stats user. 117 * 118 * @param companyId the company ID of this blogs stats user 119 */ 120 public void setCompanyId(long companyId); 121 122 /** 123 * Returns the user ID of this blogs stats user. 124 * 125 * @return the user ID of this blogs stats user 126 */ 127 public long getUserId(); 128 129 /** 130 * Sets the user ID of this blogs stats user. 131 * 132 * @param userId the user ID of this blogs stats user 133 */ 134 public void setUserId(long userId); 135 136 /** 137 * Returns the user uuid of this blogs stats user. 138 * 139 * @return the user uuid of this blogs stats user 140 * @throws SystemException if a system exception occurred 141 */ 142 public String getUserUuid() throws SystemException; 143 144 /** 145 * Sets the user uuid of this blogs stats user. 146 * 147 * @param userUuid the user uuid of this blogs stats user 148 */ 149 public void setUserUuid(String userUuid); 150 151 /** 152 * Returns the entry count of this blogs stats user. 153 * 154 * @return the entry count of this blogs stats user 155 */ 156 public int getEntryCount(); 157 158 /** 159 * Sets the entry count of this blogs stats user. 160 * 161 * @param entryCount the entry count of this blogs stats user 162 */ 163 public void setEntryCount(int entryCount); 164 165 /** 166 * Returns the last post date of this blogs stats user. 167 * 168 * @return the last post date of this blogs stats user 169 */ 170 public Date getLastPostDate(); 171 172 /** 173 * Sets the last post date of this blogs stats user. 174 * 175 * @param lastPostDate the last post date of this blogs stats user 176 */ 177 public void setLastPostDate(Date lastPostDate); 178 179 /** 180 * Returns the ratings total entries of this blogs stats user. 181 * 182 * @return the ratings total entries of this blogs stats user 183 */ 184 public int getRatingsTotalEntries(); 185 186 /** 187 * Sets the ratings total entries of this blogs stats user. 188 * 189 * @param ratingsTotalEntries the ratings total entries of this blogs stats user 190 */ 191 public void setRatingsTotalEntries(int ratingsTotalEntries); 192 193 /** 194 * Returns the ratings total score of this blogs stats user. 195 * 196 * @return the ratings total score of this blogs stats user 197 */ 198 public double getRatingsTotalScore(); 199 200 /** 201 * Sets the ratings total score of this blogs stats user. 202 * 203 * @param ratingsTotalScore the ratings total score of this blogs stats user 204 */ 205 public void setRatingsTotalScore(double ratingsTotalScore); 206 207 /** 208 * Returns the ratings average score of this blogs stats user. 209 * 210 * @return the ratings average score of this blogs stats user 211 */ 212 public double getRatingsAverageScore(); 213 214 /** 215 * Sets the ratings average score of this blogs stats user. 216 * 217 * @param ratingsAverageScore the ratings average score of this blogs stats user 218 */ 219 public void setRatingsAverageScore(double ratingsAverageScore); 220 221 @Override 222 public boolean isNew(); 223 224 @Override 225 public void setNew(boolean n); 226 227 @Override 228 public boolean isCachedModel(); 229 230 @Override 231 public void setCachedModel(boolean cachedModel); 232 233 @Override 234 public boolean isEscapedModel(); 235 236 @Override 237 public Serializable getPrimaryKeyObj(); 238 239 @Override 240 public void setPrimaryKeyObj(Serializable primaryKeyObj); 241 242 @Override 243 public ExpandoBridge getExpandoBridge(); 244 245 @Override 246 public void setExpandoBridgeAttributes(BaseModel<?> baseModel); 247 248 @Override 249 public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge); 250 251 @Override 252 public void setExpandoBridgeAttributes(ServiceContext serviceContext); 253 254 @Override 255 public Object clone(); 256 257 @Override 258 public int compareTo(BlogsStatsUser blogsStatsUser); 259 260 @Override 261 public int hashCode(); 262 263 @Override 264 public CacheModel<BlogsStatsUser> toCacheModel(); 265 266 @Override 267 public BlogsStatsUser toEscapedModel(); 268 269 @Override 270 public BlogsStatsUser toUnescapedModel(); 271 272 @Override 273 public String toString(); 274 275 @Override 276 public String toXmlString(); 277 }