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.PortletPreferences;
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 PortletPreferences in entity cache.
033     *
034     * @author Brian Wing Shun Chan
035     * @see PortletPreferences
036     * @generated
037     */
038    @ProviderType
039    public class PortletPreferencesCacheModel implements CacheModel<PortletPreferences>,
040            Externalizable, MVCCModel {
041            @Override
042            public boolean equals(Object obj) {
043                    if (this == obj) {
044                            return true;
045                    }
046    
047                    if (!(obj instanceof PortletPreferencesCacheModel)) {
048                            return false;
049                    }
050    
051                    PortletPreferencesCacheModel portletPreferencesCacheModel = (PortletPreferencesCacheModel)obj;
052    
053                    if ((portletPreferencesId == portletPreferencesCacheModel.portletPreferencesId) &&
054                                    (mvccVersion == portletPreferencesCacheModel.mvccVersion)) {
055                            return true;
056                    }
057    
058                    return false;
059            }
060    
061            @Override
062            public int hashCode() {
063                    int hashCode = HashUtil.hash(0, portletPreferencesId);
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(17);
081    
082                    sb.append("{mvccVersion=");
083                    sb.append(mvccVersion);
084                    sb.append(", portletPreferencesId=");
085                    sb.append(portletPreferencesId);
086                    sb.append(", companyId=");
087                    sb.append(companyId);
088                    sb.append(", ownerId=");
089                    sb.append(ownerId);
090                    sb.append(", ownerType=");
091                    sb.append(ownerType);
092                    sb.append(", plid=");
093                    sb.append(plid);
094                    sb.append(", portletId=");
095                    sb.append(portletId);
096                    sb.append(", preferences=");
097                    sb.append(preferences);
098                    sb.append("}");
099    
100                    return sb.toString();
101            }
102    
103            @Override
104            public PortletPreferences toEntityModel() {
105                    PortletPreferencesImpl portletPreferencesImpl = new PortletPreferencesImpl();
106    
107                    portletPreferencesImpl.setMvccVersion(mvccVersion);
108                    portletPreferencesImpl.setPortletPreferencesId(portletPreferencesId);
109                    portletPreferencesImpl.setCompanyId(companyId);
110                    portletPreferencesImpl.setOwnerId(ownerId);
111                    portletPreferencesImpl.setOwnerType(ownerType);
112                    portletPreferencesImpl.setPlid(plid);
113    
114                    if (portletId == null) {
115                            portletPreferencesImpl.setPortletId(StringPool.BLANK);
116                    }
117                    else {
118                            portletPreferencesImpl.setPortletId(portletId);
119                    }
120    
121                    if (preferences == null) {
122                            portletPreferencesImpl.setPreferences(StringPool.BLANK);
123                    }
124                    else {
125                            portletPreferencesImpl.setPreferences(preferences);
126                    }
127    
128                    portletPreferencesImpl.resetOriginalValues();
129    
130                    return portletPreferencesImpl;
131            }
132    
133            @Override
134            public void readExternal(ObjectInput objectInput) throws IOException {
135                    mvccVersion = objectInput.readLong();
136    
137                    portletPreferencesId = objectInput.readLong();
138    
139                    companyId = objectInput.readLong();
140    
141                    ownerId = objectInput.readLong();
142    
143                    ownerType = objectInput.readInt();
144    
145                    plid = objectInput.readLong();
146                    portletId = objectInput.readUTF();
147                    preferences = objectInput.readUTF();
148            }
149    
150            @Override
151            public void writeExternal(ObjectOutput objectOutput)
152                    throws IOException {
153                    objectOutput.writeLong(mvccVersion);
154    
155                    objectOutput.writeLong(portletPreferencesId);
156    
157                    objectOutput.writeLong(companyId);
158    
159                    objectOutput.writeLong(ownerId);
160    
161                    objectOutput.writeInt(ownerType);
162    
163                    objectOutput.writeLong(plid);
164    
165                    if (portletId == null) {
166                            objectOutput.writeUTF(StringPool.BLANK);
167                    }
168                    else {
169                            objectOutput.writeUTF(portletId);
170                    }
171    
172                    if (preferences == null) {
173                            objectOutput.writeUTF(StringPool.BLANK);
174                    }
175                    else {
176                            objectOutput.writeUTF(preferences);
177                    }
178            }
179    
180            public long mvccVersion;
181            public long portletPreferencesId;
182            public long companyId;
183            public long ownerId;
184            public int ownerType;
185            public long plid;
186            public String portletId;
187            public String preferences;
188    }