001
014
015 package com.liferay.portlet.social.model.impl;
016
017 import aQute.bnd.annotation.ProviderType;
018
019 import com.liferay.portal.kernel.util.HashUtil;
020 import com.liferay.portal.kernel.util.StringBundler;
021 import com.liferay.portal.kernel.util.StringPool;
022 import com.liferay.portal.model.CacheModel;
023
024 import com.liferay.portlet.social.model.SocialRelation;
025
026 import java.io.Externalizable;
027 import java.io.IOException;
028 import java.io.ObjectInput;
029 import java.io.ObjectOutput;
030
031
038 @ProviderType
039 public class SocialRelationCacheModel implements CacheModel<SocialRelation>,
040 Externalizable {
041 @Override
042 public boolean equals(Object obj) {
043 if (this == obj) {
044 return true;
045 }
046
047 if (!(obj instanceof SocialRelationCacheModel)) {
048 return false;
049 }
050
051 SocialRelationCacheModel socialRelationCacheModel = (SocialRelationCacheModel)obj;
052
053 if (relationId == socialRelationCacheModel.relationId) {
054 return true;
055 }
056
057 return false;
058 }
059
060 @Override
061 public int hashCode() {
062 return HashUtil.hash(0, relationId);
063 }
064
065 @Override
066 public String toString() {
067 StringBundler sb = new StringBundler(15);
068
069 sb.append("{uuid=");
070 sb.append(uuid);
071 sb.append(", relationId=");
072 sb.append(relationId);
073 sb.append(", companyId=");
074 sb.append(companyId);
075 sb.append(", createDate=");
076 sb.append(createDate);
077 sb.append(", userId1=");
078 sb.append(userId1);
079 sb.append(", userId2=");
080 sb.append(userId2);
081 sb.append(", type=");
082 sb.append(type);
083 sb.append("}");
084
085 return sb.toString();
086 }
087
088 @Override
089 public SocialRelation toEntityModel() {
090 SocialRelationImpl socialRelationImpl = new SocialRelationImpl();
091
092 if (uuid == null) {
093 socialRelationImpl.setUuid(StringPool.BLANK);
094 }
095 else {
096 socialRelationImpl.setUuid(uuid);
097 }
098
099 socialRelationImpl.setRelationId(relationId);
100 socialRelationImpl.setCompanyId(companyId);
101 socialRelationImpl.setCreateDate(createDate);
102 socialRelationImpl.setUserId1(userId1);
103 socialRelationImpl.setUserId2(userId2);
104 socialRelationImpl.setType(type);
105
106 socialRelationImpl.resetOriginalValues();
107
108 return socialRelationImpl;
109 }
110
111 @Override
112 public void readExternal(ObjectInput objectInput) throws IOException {
113 uuid = objectInput.readUTF();
114 relationId = objectInput.readLong();
115 companyId = objectInput.readLong();
116 createDate = objectInput.readLong();
117 userId1 = objectInput.readLong();
118 userId2 = objectInput.readLong();
119 type = objectInput.readInt();
120 }
121
122 @Override
123 public void writeExternal(ObjectOutput objectOutput)
124 throws IOException {
125 if (uuid == null) {
126 objectOutput.writeUTF(StringPool.BLANK);
127 }
128 else {
129 objectOutput.writeUTF(uuid);
130 }
131
132 objectOutput.writeLong(relationId);
133 objectOutput.writeLong(companyId);
134 objectOutput.writeLong(createDate);
135 objectOutput.writeLong(userId1);
136 objectOutput.writeLong(userId2);
137 objectOutput.writeInt(type);
138 }
139
140 public String uuid;
141 public long relationId;
142 public long companyId;
143 public long createDate;
144 public long userId1;
145 public long userId2;
146 public int type;
147 }