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.annotation.AutoEscape;
018    import com.liferay.portal.kernel.exception.SystemException;
019    import com.liferay.portal.model.BaseModel;
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     * <p>
028     * This interface is a model that represents the SocialEquityLog table in the
029     * database.
030     * </p>
031     *
032     * @author    Brian Wing Shun Chan
033     * @see       SocialEquityLog
034     * @see       com.liferay.portlet.social.model.impl.SocialEquityLogImpl
035     * @see       com.liferay.portlet.social.model.impl.SocialEquityLogModelImpl
036     * @generated
037     */
038    public interface SocialEquityLogModel extends BaseModel<SocialEquityLog> {
039            public long getPrimaryKey();
040    
041            public void setPrimaryKey(long pk);
042    
043            public long getEquityLogId();
044    
045            public void setEquityLogId(long equityLogId);
046    
047            public long getGroupId();
048    
049            public void setGroupId(long groupId);
050    
051            public long getCompanyId();
052    
053            public void setCompanyId(long companyId);
054    
055            public long getUserId();
056    
057            public void setUserId(long userId);
058    
059            public String getUserUuid() throws SystemException;
060    
061            public void setUserUuid(String userUuid);
062    
063            public long getAssetEntryId();
064    
065            public void setAssetEntryId(long assetEntryId);
066    
067            @AutoEscape
068            public String getActionId();
069    
070            public void setActionId(String actionId);
071    
072            public int getActionDate();
073    
074            public void setActionDate(int actionDate);
075    
076            public boolean getActive();
077    
078            public boolean isActive();
079    
080            public void setActive(boolean active);
081    
082            public int getExpiration();
083    
084            public void setExpiration(int expiration);
085    
086            public int getType();
087    
088            public void setType(int type);
089    
090            public int getValue();
091    
092            public void setValue(int value);
093    
094            public SocialEquityLog toEscapedModel();
095    
096            public boolean isNew();
097    
098            public void setNew(boolean n);
099    
100            public boolean isCachedModel();
101    
102            public void setCachedModel(boolean cachedModel);
103    
104            public boolean isEscapedModel();
105    
106            public void setEscapedModel(boolean escapedModel);
107    
108            public Serializable getPrimaryKeyObj();
109    
110            public ExpandoBridge getExpandoBridge();
111    
112            public void setExpandoBridgeAttributes(ServiceContext serviceContext);
113    
114            public Object clone();
115    
116            public int compareTo(SocialEquityLog socialEquityLog);
117    
118            public int hashCode();
119    
120            public String toString();
121    
122            public String toXmlString();
123    }