001
014
015 package com.liferay.portal.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 import com.liferay.portal.model.MVCCModel;
024 import com.liferay.portal.model.ResourceBlock;
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 ResourceBlockCacheModel implements CacheModel<ResourceBlock>,
040 Externalizable, MVCCModel {
041 @Override
042 public boolean equals(Object obj) {
043 if (this == obj) {
044 return true;
045 }
046
047 if (!(obj instanceof ResourceBlockCacheModel)) {
048 return false;
049 }
050
051 ResourceBlockCacheModel resourceBlockCacheModel = (ResourceBlockCacheModel)obj;
052
053 if ((resourceBlockId == resourceBlockCacheModel.resourceBlockId) &&
054 (mvccVersion == resourceBlockCacheModel.mvccVersion)) {
055 return true;
056 }
057
058 return false;
059 }
060
061 @Override
062 public int hashCode() {
063 int hashCode = HashUtil.hash(0, resourceBlockId);
064
065 return HashUtil.hash(hashCode, mvccVersion);
066 }
067
068 @Override
069 public long getMvccVersion() {
070 return mvccVersion;
071 }
072
073 @Override
074 public void setMvccVersion(long mvccVersion) {
075 this.mvccVersion = mvccVersion;
076 }
077
078 @Override
079 public String toString() {
080 StringBundler sb = new StringBundler(15);
081
082 sb.append("{mvccVersion=");
083 sb.append(mvccVersion);
084 sb.append(", resourceBlockId=");
085 sb.append(resourceBlockId);
086 sb.append(", companyId=");
087 sb.append(companyId);
088 sb.append(", groupId=");
089 sb.append(groupId);
090 sb.append(", name=");
091 sb.append(name);
092 sb.append(", permissionsHash=");
093 sb.append(permissionsHash);
094 sb.append(", referenceCount=");
095 sb.append(referenceCount);
096 sb.append("}");
097
098 return sb.toString();
099 }
100
101 @Override
102 public ResourceBlock toEntityModel() {
103 ResourceBlockImpl resourceBlockImpl = new ResourceBlockImpl();
104
105 resourceBlockImpl.setMvccVersion(mvccVersion);
106 resourceBlockImpl.setResourceBlockId(resourceBlockId);
107 resourceBlockImpl.setCompanyId(companyId);
108 resourceBlockImpl.setGroupId(groupId);
109
110 if (name == null) {
111 resourceBlockImpl.setName(StringPool.BLANK);
112 }
113 else {
114 resourceBlockImpl.setName(name);
115 }
116
117 if (permissionsHash == null) {
118 resourceBlockImpl.setPermissionsHash(StringPool.BLANK);
119 }
120 else {
121 resourceBlockImpl.setPermissionsHash(permissionsHash);
122 }
123
124 resourceBlockImpl.setReferenceCount(referenceCount);
125
126 resourceBlockImpl.resetOriginalValues();
127
128 return resourceBlockImpl;
129 }
130
131 @Override
132 public void readExternal(ObjectInput objectInput) throws IOException {
133 mvccVersion = objectInput.readLong();
134 resourceBlockId = objectInput.readLong();
135 companyId = objectInput.readLong();
136 groupId = objectInput.readLong();
137 name = objectInput.readUTF();
138 permissionsHash = objectInput.readUTF();
139 referenceCount = objectInput.readLong();
140 }
141
142 @Override
143 public void writeExternal(ObjectOutput objectOutput)
144 throws IOException {
145 objectOutput.writeLong(mvccVersion);
146 objectOutput.writeLong(resourceBlockId);
147 objectOutput.writeLong(companyId);
148 objectOutput.writeLong(groupId);
149
150 if (name == null) {
151 objectOutput.writeUTF(StringPool.BLANK);
152 }
153 else {
154 objectOutput.writeUTF(name);
155 }
156
157 if (permissionsHash == null) {
158 objectOutput.writeUTF(StringPool.BLANK);
159 }
160 else {
161 objectOutput.writeUTF(permissionsHash);
162 }
163
164 objectOutput.writeLong(referenceCount);
165 }
166
167 public long mvccVersion;
168 public long resourceBlockId;
169 public long companyId;
170 public long groupId;
171 public String name;
172 public String permissionsHash;
173 public long referenceCount;
174 }