001
014
015 package com.liferay.portlet.asset.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 import java.util.Date;
027
028
040 public interface AssetCategoryPropertyModel extends BaseModel<AssetCategoryProperty> {
041 public long getPrimaryKey();
042
043 public void setPrimaryKey(long pk);
044
045 public long getCategoryPropertyId();
046
047 public void setCategoryPropertyId(long categoryPropertyId);
048
049 public long getCompanyId();
050
051 public void setCompanyId(long companyId);
052
053 public long getUserId();
054
055 public void setUserId(long userId);
056
057 public String getUserUuid() throws SystemException;
058
059 public void setUserUuid(String userUuid);
060
061 @AutoEscape
062 public String getUserName();
063
064 public void setUserName(String userName);
065
066 public Date getCreateDate();
067
068 public void setCreateDate(Date createDate);
069
070 public Date getModifiedDate();
071
072 public void setModifiedDate(Date modifiedDate);
073
074 public long getCategoryId();
075
076 public void setCategoryId(long categoryId);
077
078 @AutoEscape
079 public String getKey();
080
081 public void setKey(String key);
082
083 @AutoEscape
084 public String getValue();
085
086 public void setValue(String value);
087
088 public AssetCategoryProperty toEscapedModel();
089
090 public boolean isNew();
091
092 public void setNew(boolean n);
093
094 public boolean isCachedModel();
095
096 public void setCachedModel(boolean cachedModel);
097
098 public boolean isEscapedModel();
099
100 public void setEscapedModel(boolean escapedModel);
101
102 public Serializable getPrimaryKeyObj();
103
104 public ExpandoBridge getExpandoBridge();
105
106 public void setExpandoBridgeAttributes(ServiceContext serviceContext);
107
108 public Object clone();
109
110 public int compareTo(AssetCategoryProperty assetCategoryProperty);
111
112 public int hashCode();
113
114 public String toString();
115
116 public String toXmlString();
117 }