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