001    /**
002     * Copyright (c) 2000-present 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.portal.model.impl;
016    
017    import aQute.bnd.annotation.ProviderType;
018    
019    import com.liferay.portal.kernel.model.CacheModel;
020    import com.liferay.portal.kernel.model.MVCCModel;
021    import com.liferay.portal.kernel.model.ResourceBlock;
022    import com.liferay.portal.kernel.util.HashUtil;
023    import com.liferay.portal.kernel.util.StringBundler;
024    import com.liferay.portal.kernel.util.StringPool;
025    
026    import java.io.Externalizable;
027    import java.io.IOException;
028    import java.io.ObjectInput;
029    import java.io.ObjectOutput;
030    
031    /**
032     * The cache model class for representing ResourceBlock in entity cache.
033     *
034     * @author Brian Wing Shun Chan
035     * @see ResourceBlock
036     * @generated
037     */
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    
135                    resourceBlockId = objectInput.readLong();
136    
137                    companyId = objectInput.readLong();
138    
139                    groupId = objectInput.readLong();
140                    name = objectInput.readUTF();
141                    permissionsHash = objectInput.readUTF();
142    
143                    referenceCount = objectInput.readLong();
144            }
145    
146            @Override
147            public void writeExternal(ObjectOutput objectOutput)
148                    throws IOException {
149                    objectOutput.writeLong(mvccVersion);
150    
151                    objectOutput.writeLong(resourceBlockId);
152    
153                    objectOutput.writeLong(companyId);
154    
155                    objectOutput.writeLong(groupId);
156    
157                    if (name == null) {
158                            objectOutput.writeUTF(StringPool.BLANK);
159                    }
160                    else {
161                            objectOutput.writeUTF(name);
162                    }
163    
164                    if (permissionsHash == null) {
165                            objectOutput.writeUTF(StringPool.BLANK);
166                    }
167                    else {
168                            objectOutput.writeUTF(permissionsHash);
169                    }
170    
171                    objectOutput.writeLong(referenceCount);
172            }
173    
174            public long mvccVersion;
175            public long resourceBlockId;
176            public long companyId;
177            public long groupId;
178            public String name;
179            public String permissionsHash;
180            public long referenceCount;
181    }