|
Liferay 6.0.5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface SocialEquityLogModel
The base model interface for the SocialEquityLog service. Represents a row in the "SocialEquityLog" database table, with each column mapped to a property of this class.
This interface and its corresponding implementation SocialEquityLogModelImpl
exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in SocialEquityLogImpl
.
Never modify or reference this interface directly. All methods that expect a social equity log model instance should use the SocialEquityLog
interface instead.
SocialEquityLog
,
SocialEquityLogImpl
,
SocialEquityLogModelImpl
Method Summary | |
---|---|
Object |
clone()
Creates a shallow clone of this model instance. |
int |
compareTo(SocialEquityLog socialEquityLog)
|
int |
getActionDate()
Gets the action date of this social equity log. |
String |
getActionId()
Gets the action id of this social equity log. |
boolean |
getActive()
Gets the active of this social equity log. |
long |
getAssetEntryId()
Gets the asset entry id of this social equity log. |
long |
getCompanyId()
Gets the company id of this social equity log. |
long |
getEquityLogId()
Gets the equity log id of this social equity log. |
ExpandoBridge |
getExpandoBridge()
Gets the expando bridge for this model instance. |
int |
getExpiration()
Gets the expiration of this social equity log. |
long |
getGroupId()
Gets the group id of this social equity log. |
long |
getPrimaryKey()
Gets the primary key of this social equity log. |
Serializable |
getPrimaryKeyObj()
Gets the primary key of this model instance. |
int |
getType()
Gets the type of this social equity log. |
long |
getUserId()
Gets the user id of this social equity log. |
String |
getUserUuid()
Gets the user uuid of this social equity log. |
int |
getValue()
Gets the value of this social equity log. |
int |
hashCode()
|
boolean |
isActive()
Determines whether this social equity log is active. |
boolean |
isCachedModel()
Determines if this model instance was retrieved from the entity cache. |
boolean |
isEscapedModel()
Determines if this model instance is escaped. |
boolean |
isNew()
Determines if this model instance does not yet exist in the database. |
void |
setActionDate(int actionDate)
Sets the action date of this social equity log. |
void |
setActionId(String actionId)
Sets the action id of this social equity log. |
void |
setActive(boolean active)
Sets whether this {$entity.humanName} is active. |
void |
setAssetEntryId(long assetEntryId)
Sets the asset entry id of this social equity log. |
void |
setCachedModel(boolean cachedModel)
Sets whether this model instance was retrieved from the entity cache. |
void |
setCompanyId(long companyId)
Sets the company id of this social equity log. |
void |
setEquityLogId(long equityLogId)
Sets the equity log id of this social equity log. |
void |
setEscapedModel(boolean escapedModel)
Sets whether this model instance is escaped, meaning that all strings returned from getter methods are HTML safe. |
void |
setExpandoBridgeAttributes(ServiceContext serviceContext)
Sets the expando bridge attributes for this model instance to the attributes stored in the service context. |
void |
setExpiration(int expiration)
Sets the expiration of this social equity log. |
void |
setGroupId(long groupId)
Sets the group id of this social equity log. |
void |
setNew(boolean n)
Sets whether this model instance does not yet exist in the database. |
void |
setPrimaryKey(long pk)
Sets the primary key of this social equity log |
void |
setType(int type)
Sets the type of this social equity log. |
void |
setUserId(long userId)
Sets the user id of this social equity log. |
void |
setUserUuid(String userUuid)
Sets the user uuid of this social equity log. |
void |
setValue(int value)
Sets the value of this social equity log. |
SocialEquityLog |
toEscapedModel()
Gets a copy of this social equity log as an escaped model instance by wrapping it with an AutoEscapeBeanHandler . |
String |
toString()
|
String |
toXmlString()
Gets the XML representation of this model instance. |
Method Detail |
---|
long getPrimaryKey()
void setPrimaryKey(long pk)
pk
- the primary key of this social equity loglong getEquityLogId()
void setEquityLogId(long equityLogId)
equityLogId
- the equity log id of this social equity loglong getGroupId()
void setGroupId(long groupId)
groupId
- the group id of this social equity loglong getCompanyId()
void setCompanyId(long companyId)
companyId
- the company id of this social equity loglong getUserId()
void setUserId(long userId)
userId
- the user id of this social equity logString getUserUuid() throws SystemException
SystemException
- if a system exception occurredvoid setUserUuid(String userUuid)
userUuid
- the user uuid of this social equity loglong getAssetEntryId()
void setAssetEntryId(long assetEntryId)
assetEntryId
- the asset entry id of this social equity log@AutoEscape String getActionId()
void setActionId(String actionId)
actionId
- the action id of this social equity logint getActionDate()
void setActionDate(int actionDate)
actionDate
- the action date of this social equity logboolean getActive()
boolean isActive()
void setActive(boolean active)
active
- the active of this social equity logint getExpiration()
void setExpiration(int expiration)
expiration
- the expiration of this social equity logint getType()
void setType(int type)
type
- the type of this social equity logint getValue()
void setValue(int value)
value
- the value of this social equity logSocialEquityLog toEscapedModel()
AutoEscapeBeanHandler
.
AutoEscapeBeanHandler
boolean isNew()
BaseModel
isNew
in interface BaseModel<SocialEquityLog>
true
if this model instance does not yet exist in
the database; false
otherwisevoid setNew(boolean n)
BaseModel
setNew
in interface BaseModel<SocialEquityLog>
n
- whether this model instance does not yet exist in the databaseboolean isCachedModel()
BaseModel
isCachedModel
in interface BaseModel<SocialEquityLog>
true
if this model instance was retrieved from the
entity cache; false
otherwiseBaseModel.setCachedModel(boolean)
void setCachedModel(boolean cachedModel)
BaseModel
setCachedModel
in interface BaseModel<SocialEquityLog>
cachedModel
- whether this model instance was retrieved from the
entity cacheEntityCache
boolean isEscapedModel()
BaseModel
isEscapedModel
in interface BaseModel<SocialEquityLog>
true
if this model instance is escaped;
false
otherwiseBaseModel.setEscapedModel(boolean)
void setEscapedModel(boolean escapedModel)
BaseModel
A model instance can be made escaped by wrapping it with an HTML auto
escape handler using its toEscapedModel
method. For example,
UserModel.toEscapedModel()
.
setEscapedModel
in interface BaseModel<SocialEquityLog>
escapedModel
- whether this model instance is escapedAutoEscapeBeanHandler
Serializable getPrimaryKeyObj()
BaseModel
getPrimaryKeyObj
in interface BaseModel<SocialEquityLog>
ExpandoBridge getExpandoBridge()
BaseModel
getExpandoBridge
in interface BaseModel<SocialEquityLog>
void setExpandoBridgeAttributes(ServiceContext serviceContext)
BaseModel
setExpandoBridgeAttributes
in interface BaseModel<SocialEquityLog>
serviceContext
- the service context to retrieve the expando bridge
attributes fromServiceContext.getExpandoBridgeAttributes(
)
Object clone()
BaseModel
clone
in interface BaseModel<SocialEquityLog>
int compareTo(SocialEquityLog socialEquityLog)
compareTo
in interface Comparable<SocialEquityLog>
int hashCode()
hashCode
in class Object
String toString()
toString
in class Object
String toXmlString()
BaseModel
toXmlString
in interface BaseModel<SocialEquityLog>
|
Liferay 6.0.5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |