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