001 /** 002 * Copyright (c) 2000-2012 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.trash.model; 016 017 import com.liferay.portal.kernel.bean.AutoEscape; 018 import com.liferay.portal.kernel.exception.SystemException; 019 import com.liferay.portal.model.AttachedModel; 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 TrashEntry service. Represents a row in the "TrashEntry" 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.trash.model.impl.TrashEntryModelImpl} 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.trash.model.impl.TrashEntryImpl}. 035 * </p> 036 * 037 * @author Brian Wing Shun Chan 038 * @see TrashEntry 039 * @see com.liferay.portlet.trash.model.impl.TrashEntryImpl 040 * @see com.liferay.portlet.trash.model.impl.TrashEntryModelImpl 041 * @generated 042 */ 043 public interface TrashEntryModel extends AttachedModel, BaseModel<TrashEntry> { 044 /* 045 * NOTE FOR DEVELOPERS: 046 * 047 * Never modify or reference this interface directly. All methods that expect a trash entry model instance should use the {@link TrashEntry} interface instead. 048 */ 049 050 /** 051 * Returns the primary key of this trash entry. 052 * 053 * @return the primary key of this trash entry 054 */ 055 public long getPrimaryKey(); 056 057 /** 058 * Sets the primary key of this trash entry. 059 * 060 * @param primaryKey the primary key of this trash entry 061 */ 062 public void setPrimaryKey(long primaryKey); 063 064 /** 065 * Returns the entry ID of this trash entry. 066 * 067 * @return the entry ID of this trash entry 068 */ 069 public long getEntryId(); 070 071 /** 072 * Sets the entry ID of this trash entry. 073 * 074 * @param entryId the entry ID of this trash entry 075 */ 076 public void setEntryId(long entryId); 077 078 /** 079 * Returns the group ID of this trash entry. 080 * 081 * @return the group ID of this trash entry 082 */ 083 public long getGroupId(); 084 085 /** 086 * Sets the group ID of this trash entry. 087 * 088 * @param groupId the group ID of this trash entry 089 */ 090 public void setGroupId(long groupId); 091 092 /** 093 * Returns the company ID of this trash entry. 094 * 095 * @return the company ID of this trash entry 096 */ 097 public long getCompanyId(); 098 099 /** 100 * Sets the company ID of this trash entry. 101 * 102 * @param companyId the company ID of this trash entry 103 */ 104 public void setCompanyId(long companyId); 105 106 /** 107 * Returns the user ID of this trash entry. 108 * 109 * @return the user ID of this trash entry 110 */ 111 public long getUserId(); 112 113 /** 114 * Sets the user ID of this trash entry. 115 * 116 * @param userId the user ID of this trash entry 117 */ 118 public void setUserId(long userId); 119 120 /** 121 * Returns the user uuid of this trash entry. 122 * 123 * @return the user uuid of this trash entry 124 * @throws SystemException if a system exception occurred 125 */ 126 public String getUserUuid() throws SystemException; 127 128 /** 129 * Sets the user uuid of this trash entry. 130 * 131 * @param userUuid the user uuid of this trash entry 132 */ 133 public void setUserUuid(String userUuid); 134 135 /** 136 * Returns the user name of this trash entry. 137 * 138 * @return the user name of this trash entry 139 */ 140 @AutoEscape 141 public String getUserName(); 142 143 /** 144 * Sets the user name of this trash entry. 145 * 146 * @param userName the user name of this trash entry 147 */ 148 public void setUserName(String userName); 149 150 /** 151 * Returns the create date of this trash entry. 152 * 153 * @return the create date of this trash entry 154 */ 155 public Date getCreateDate(); 156 157 /** 158 * Sets the create date of this trash entry. 159 * 160 * @param createDate the create date of this trash entry 161 */ 162 public void setCreateDate(Date createDate); 163 164 /** 165 * Returns the fully qualified class name of this trash entry. 166 * 167 * @return the fully qualified class name of this trash entry 168 */ 169 public String getClassName(); 170 171 public void setClassName(String className); 172 173 /** 174 * Returns the class name ID of this trash entry. 175 * 176 * @return the class name ID of this trash entry 177 */ 178 public long getClassNameId(); 179 180 /** 181 * Sets the class name ID of this trash entry. 182 * 183 * @param classNameId the class name ID of this trash entry 184 */ 185 public void setClassNameId(long classNameId); 186 187 /** 188 * Returns the class p k of this trash entry. 189 * 190 * @return the class p k of this trash entry 191 */ 192 public long getClassPK(); 193 194 /** 195 * Sets the class p k of this trash entry. 196 * 197 * @param classPK the class p k of this trash entry 198 */ 199 public void setClassPK(long classPK); 200 201 /** 202 * Returns the type settings of this trash entry. 203 * 204 * @return the type settings of this trash entry 205 */ 206 @AutoEscape 207 public String getTypeSettings(); 208 209 /** 210 * Sets the type settings of this trash entry. 211 * 212 * @param typeSettings the type settings of this trash entry 213 */ 214 public void setTypeSettings(String typeSettings); 215 216 /** 217 * Returns the status of this trash entry. 218 * 219 * @return the status of this trash entry 220 */ 221 public int getStatus(); 222 223 /** 224 * Sets the status of this trash entry. 225 * 226 * @param status the status of this trash entry 227 */ 228 public void setStatus(int status); 229 230 public boolean isNew(); 231 232 public void setNew(boolean n); 233 234 public boolean isCachedModel(); 235 236 public void setCachedModel(boolean cachedModel); 237 238 public boolean isEscapedModel(); 239 240 public Serializable getPrimaryKeyObj(); 241 242 public void setPrimaryKeyObj(Serializable primaryKeyObj); 243 244 public ExpandoBridge getExpandoBridge(); 245 246 public void setExpandoBridgeAttributes(ServiceContext serviceContext); 247 248 public Object clone(); 249 250 public int compareTo(TrashEntry trashEntry); 251 252 public int hashCode(); 253 254 public CacheModel<TrashEntry> toCacheModel(); 255 256 public TrashEntry toEscapedModel(); 257 258 public String toString(); 259 260 public String toXmlString(); 261 }