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.asset.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.model.TypedModel; 023 import com.liferay.portal.service.ServiceContext; 024 025 import com.liferay.portlet.expando.model.ExpandoBridge; 026 027 import java.io.Serializable; 028 029 /** 030 * The base model interface for the AssetTagStats service. Represents a row in the "AssetTagStats" database table, with each column mapped to a property of this class. 031 * 032 * <p> 033 * This interface and its corresponding implementation {@link com.liferay.portlet.asset.model.impl.AssetTagStatsModelImpl} 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.asset.model.impl.AssetTagStatsImpl}. 034 * </p> 035 * 036 * @author Brian Wing Shun Chan 037 * @see AssetTagStats 038 * @see com.liferay.portlet.asset.model.impl.AssetTagStatsImpl 039 * @see com.liferay.portlet.asset.model.impl.AssetTagStatsModelImpl 040 * @generated 041 */ 042 @ProviderType 043 public interface AssetTagStatsModel extends BaseModel<AssetTagStats>, 044 ShardedModel, TypedModel { 045 /* 046 * NOTE FOR DEVELOPERS: 047 * 048 * Never modify or reference this interface directly. All methods that expect a asset tag stats model instance should use the {@link AssetTagStats} interface instead. 049 */ 050 051 /** 052 * Returns the primary key of this asset tag stats. 053 * 054 * @return the primary key of this asset tag stats 055 */ 056 public long getPrimaryKey(); 057 058 /** 059 * Sets the primary key of this asset tag stats. 060 * 061 * @param primaryKey the primary key of this asset tag stats 062 */ 063 public void setPrimaryKey(long primaryKey); 064 065 /** 066 * Returns the tag stats ID of this asset tag stats. 067 * 068 * @return the tag stats ID of this asset tag stats 069 */ 070 public long getTagStatsId(); 071 072 /** 073 * Sets the tag stats ID of this asset tag stats. 074 * 075 * @param tagStatsId the tag stats ID of this asset tag stats 076 */ 077 public void setTagStatsId(long tagStatsId); 078 079 /** 080 * Returns the company ID of this asset tag stats. 081 * 082 * @return the company ID of this asset tag stats 083 */ 084 @Override 085 public long getCompanyId(); 086 087 /** 088 * Sets the company ID of this asset tag stats. 089 * 090 * @param companyId the company ID of this asset tag stats 091 */ 092 @Override 093 public void setCompanyId(long companyId); 094 095 /** 096 * Returns the tag ID of this asset tag stats. 097 * 098 * @return the tag ID of this asset tag stats 099 */ 100 public long getTagId(); 101 102 /** 103 * Sets the tag ID of this asset tag stats. 104 * 105 * @param tagId the tag ID of this asset tag stats 106 */ 107 public void setTagId(long tagId); 108 109 /** 110 * Returns the fully qualified class name of this asset tag stats. 111 * 112 * @return the fully qualified class name of this asset tag stats 113 */ 114 @Override 115 public String getClassName(); 116 117 public void setClassName(String className); 118 119 /** 120 * Returns the class name ID of this asset tag stats. 121 * 122 * @return the class name ID of this asset tag stats 123 */ 124 @Override 125 public long getClassNameId(); 126 127 /** 128 * Sets the class name ID of this asset tag stats. 129 * 130 * @param classNameId the class name ID of this asset tag stats 131 */ 132 @Override 133 public void setClassNameId(long classNameId); 134 135 /** 136 * Returns the asset count of this asset tag stats. 137 * 138 * @return the asset count of this asset tag stats 139 */ 140 public int getAssetCount(); 141 142 /** 143 * Sets the asset count of this asset tag stats. 144 * 145 * @param assetCount the asset count of this asset tag stats 146 */ 147 public void setAssetCount(int assetCount); 148 149 @Override 150 public boolean isNew(); 151 152 @Override 153 public void setNew(boolean n); 154 155 @Override 156 public boolean isCachedModel(); 157 158 @Override 159 public void setCachedModel(boolean cachedModel); 160 161 @Override 162 public boolean isEscapedModel(); 163 164 @Override 165 public Serializable getPrimaryKeyObj(); 166 167 @Override 168 public void setPrimaryKeyObj(Serializable primaryKeyObj); 169 170 @Override 171 public ExpandoBridge getExpandoBridge(); 172 173 @Override 174 public void setExpandoBridgeAttributes(BaseModel<?> baseModel); 175 176 @Override 177 public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge); 178 179 @Override 180 public void setExpandoBridgeAttributes(ServiceContext serviceContext); 181 182 @Override 183 public Object clone(); 184 185 @Override 186 public int compareTo( 187 com.liferay.portlet.asset.model.AssetTagStats assetTagStats); 188 189 @Override 190 public int hashCode(); 191 192 @Override 193 public CacheModel<com.liferay.portlet.asset.model.AssetTagStats> toCacheModel(); 194 195 @Override 196 public com.liferay.portlet.asset.model.AssetTagStats toEscapedModel(); 197 198 @Override 199 public com.liferay.portlet.asset.model.AssetTagStats toUnescapedModel(); 200 201 @Override 202 public String toString(); 203 204 @Override 205 public String toXmlString(); 206 }