001 /** 002 * Copyright (c) 2000-2011 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.social.model; 016 017 import com.liferay.portal.kernel.exception.SystemException; 018 import com.liferay.portal.model.BaseModel; 019 import com.liferay.portal.model.CacheModel; 020 import com.liferay.portal.service.ServiceContext; 021 022 import com.liferay.portlet.expando.model.ExpandoBridge; 023 024 import java.io.Serializable; 025 026 /** 027 * The base model interface for the SocialEquityAssetEntry service. Represents a row in the "SocialEquityAssetEntry" database table, with each column mapped to a property of this class. 028 * 029 * <p> 030 * This interface and its corresponding implementation {@link com.liferay.portlet.social.model.impl.SocialEquityAssetEntryModelImpl} 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.social.model.impl.SocialEquityAssetEntryImpl}. 031 * </p> 032 * 033 * @author Brian Wing Shun Chan 034 * @see SocialEquityAssetEntry 035 * @see com.liferay.portlet.social.model.impl.SocialEquityAssetEntryImpl 036 * @see com.liferay.portlet.social.model.impl.SocialEquityAssetEntryModelImpl 037 * @generated 038 */ 039 public interface SocialEquityAssetEntryModel extends BaseModel<SocialEquityAssetEntry> { 040 /* 041 * NOTE FOR DEVELOPERS: 042 * 043 * Never modify or reference this interface directly. All methods that expect a social equity asset entry model instance should use the {@link SocialEquityAssetEntry} interface instead. 044 */ 045 046 /** 047 * Returns the primary key of this social equity asset entry. 048 * 049 * @return the primary key of this social equity asset entry 050 */ 051 public long getPrimaryKey(); 052 053 /** 054 * Sets the primary key of this social equity asset entry. 055 * 056 * @param primaryKey the primary key of this social equity asset entry 057 */ 058 public void setPrimaryKey(long primaryKey); 059 060 /** 061 * Returns the equity asset entry ID of this social equity asset entry. 062 * 063 * @return the equity asset entry ID of this social equity asset entry 064 */ 065 public long getEquityAssetEntryId(); 066 067 /** 068 * Sets the equity asset entry ID of this social equity asset entry. 069 * 070 * @param equityAssetEntryId the equity asset entry ID of this social equity asset entry 071 */ 072 public void setEquityAssetEntryId(long equityAssetEntryId); 073 074 /** 075 * Returns the group ID of this social equity asset entry. 076 * 077 * @return the group ID of this social equity asset entry 078 */ 079 public long getGroupId(); 080 081 /** 082 * Sets the group ID of this social equity asset entry. 083 * 084 * @param groupId the group ID of this social equity asset entry 085 */ 086 public void setGroupId(long groupId); 087 088 /** 089 * Returns the company ID of this social equity asset entry. 090 * 091 * @return the company ID of this social equity asset entry 092 */ 093 public long getCompanyId(); 094 095 /** 096 * Sets the company ID of this social equity asset entry. 097 * 098 * @param companyId the company ID of this social equity asset entry 099 */ 100 public void setCompanyId(long companyId); 101 102 /** 103 * Returns the user ID of this social equity asset entry. 104 * 105 * @return the user ID of this social equity asset entry 106 */ 107 public long getUserId(); 108 109 /** 110 * Sets the user ID of this social equity asset entry. 111 * 112 * @param userId the user ID of this social equity asset entry 113 */ 114 public void setUserId(long userId); 115 116 /** 117 * Returns the user uuid of this social equity asset entry. 118 * 119 * @return the user uuid of this social equity asset entry 120 * @throws SystemException if a system exception occurred 121 */ 122 public String getUserUuid() throws SystemException; 123 124 /** 125 * Sets the user uuid of this social equity asset entry. 126 * 127 * @param userUuid the user uuid of this social equity asset entry 128 */ 129 public void setUserUuid(String userUuid); 130 131 /** 132 * Returns the asset entry ID of this social equity asset entry. 133 * 134 * @return the asset entry ID of this social equity asset entry 135 */ 136 public long getAssetEntryId(); 137 138 /** 139 * Sets the asset entry ID of this social equity asset entry. 140 * 141 * @param assetEntryId the asset entry ID of this social equity asset entry 142 */ 143 public void setAssetEntryId(long assetEntryId); 144 145 /** 146 * Returns the information k of this social equity asset entry. 147 * 148 * @return the information k of this social equity asset entry 149 */ 150 public double getInformationK(); 151 152 /** 153 * Sets the information k of this social equity asset entry. 154 * 155 * @param informationK the information k of this social equity asset entry 156 */ 157 public void setInformationK(double informationK); 158 159 /** 160 * Returns the information b of this social equity asset entry. 161 * 162 * @return the information b of this social equity asset entry 163 */ 164 public double getInformationB(); 165 166 /** 167 * Sets the information b of this social equity asset entry. 168 * 169 * @param informationB the information b of this social equity asset entry 170 */ 171 public void setInformationB(double informationB); 172 173 public boolean isNew(); 174 175 public void setNew(boolean n); 176 177 public boolean isCachedModel(); 178 179 public void setCachedModel(boolean cachedModel); 180 181 public boolean isEscapedModel(); 182 183 public Serializable getPrimaryKeyObj(); 184 185 public void setPrimaryKeyObj(Serializable primaryKeyObj); 186 187 public ExpandoBridge getExpandoBridge(); 188 189 public void setExpandoBridgeAttributes(ServiceContext serviceContext); 190 191 public Object clone(); 192 193 public int compareTo(SocialEquityAssetEntry socialEquityAssetEntry); 194 195 public int hashCode(); 196 197 public CacheModel<SocialEquityAssetEntry> toCacheModel(); 198 199 public SocialEquityAssetEntry toEscapedModel(); 200 201 public String toString(); 202 203 public String toXmlString(); 204 }