001 /** 002 * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved. 003 * 004 * The contents of this file are subject to the terms of the Liferay Enterprise 005 * Subscription License ("License"). You may not use this file except in 006 * compliance with the License. You can obtain a copy of the License by 007 * contacting Liferay, Inc. See the License for the specific language governing 008 * permissions and limitations under the License, including but not limited to 009 * distribution rights of the Software. 010 * 011 * 012 * 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 * Gets 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 * Gets 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 * Gets 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 * Gets 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 * Gets 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 * Gets 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 * Gets 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 * Gets 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 * Gets 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 void setEscapedModel(boolean escapedModel); 184 185 public Serializable getPrimaryKeyObj(); 186 187 public void setPrimaryKeyObj(Serializable primaryKeyObj); 188 189 public ExpandoBridge getExpandoBridge(); 190 191 public void setExpandoBridgeAttributes(ServiceContext serviceContext); 192 193 public Object clone(); 194 195 public int compareTo(SocialEquityAssetEntry socialEquityAssetEntry); 196 197 public int hashCode(); 198 199 public CacheModel<SocialEquityAssetEntry> toCacheModel(); 200 201 public SocialEquityAssetEntry toEscapedModel(); 202 203 public String toString(); 204 205 public String toXmlString(); 206 }