/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.portal.kernel.model; import aQute.bnd.annotation.ProviderType; import com.liferay.expando.kernel.model.ExpandoBridge; import com.liferay.portal.kernel.service.ServiceContext; import java.io.Serializable; import java.util.HashMap; import java.util.Map; import java.util.Objects; /** * <p> * This class is a wrapper for {@link PortletPreferences}. * </p> * * @author Brian Wing Shun Chan * @see PortletPreferences * @generated */ @ProviderType public class PortletPreferencesWrapper implements PortletPreferences, ModelWrapper<PortletPreferences> { public PortletPreferencesWrapper(PortletPreferences portletPreferences) { _portletPreferences = portletPreferences; } @Override public Class<?> getModelClass() { return PortletPreferences.class; } @Override public String getModelClassName() { return PortletPreferences.class.getName(); } @Override public Map<String, Object> getModelAttributes() { Map<String, Object> attributes = new HashMap<String, Object>(); attributes.put("mvccVersion", getMvccVersion()); attributes.put("portletPreferencesId", getPortletPreferencesId()); attributes.put("companyId", getCompanyId()); attributes.put("ownerId", getOwnerId()); attributes.put("ownerType", getOwnerType()); attributes.put("plid", getPlid()); attributes.put("portletId", getPortletId()); attributes.put("preferences", getPreferences()); return attributes; } @Override public void setModelAttributes(Map<String, Object> attributes) { Long mvccVersion = (Long)attributes.get("mvccVersion"); if (mvccVersion != null) { setMvccVersion(mvccVersion); } Long portletPreferencesId = (Long)attributes.get("portletPreferencesId"); if (portletPreferencesId != null) { setPortletPreferencesId(portletPreferencesId); } Long companyId = (Long)attributes.get("companyId"); if (companyId != null) { setCompanyId(companyId); } Long ownerId = (Long)attributes.get("ownerId"); if (ownerId != null) { setOwnerId(ownerId); } Integer ownerType = (Integer)attributes.get("ownerType"); if (ownerType != null) { setOwnerType(ownerType); } Long plid = (Long)attributes.get("plid"); if (plid != null) { setPlid(plid); } String portletId = (String)attributes.get("portletId"); if (portletId != null) { setPortletId(portletId); } String preferences = (String)attributes.get("preferences"); if (preferences != null) { setPreferences(preferences); } } @Override public CacheModel<PortletPreferences> toCacheModel() { return _portletPreferences.toCacheModel(); } @Override public PortletPreferences toEscapedModel() { return new PortletPreferencesWrapper(_portletPreferences.toEscapedModel()); } @Override public PortletPreferences toUnescapedModel() { return new PortletPreferencesWrapper(_portletPreferences.toUnescapedModel()); } @Override public boolean isCachedModel() { return _portletPreferences.isCachedModel(); } @Override public boolean isEscapedModel() { return _portletPreferences.isEscapedModel(); } @Override public boolean isNew() { return _portletPreferences.isNew(); } @Override public ExpandoBridge getExpandoBridge() { return _portletPreferences.getExpandoBridge(); } @Override public int compareTo(PortletPreferences portletPreferences) { return _portletPreferences.compareTo(portletPreferences); } /** * Returns the owner type of this portlet preferences. * * @return the owner type of this portlet preferences */ @Override public int getOwnerType() { return _portletPreferences.getOwnerType(); } @Override public int hashCode() { return _portletPreferences.hashCode(); } @Override public Serializable getPrimaryKeyObj() { return _portletPreferences.getPrimaryKeyObj(); } @Override public java.lang.Object clone() { return new PortletPreferencesWrapper((PortletPreferences)_portletPreferences.clone()); } /** * Returns the portlet ID of this portlet preferences. * * @return the portlet ID of this portlet preferences */ @Override public java.lang.String getPortletId() { return _portletPreferences.getPortletId(); } /** * Returns the preferences of this portlet preferences. * * @return the preferences of this portlet preferences */ @Override public java.lang.String getPreferences() { return _portletPreferences.getPreferences(); } @Override public java.lang.String toString() { return _portletPreferences.toString(); } @Override public java.lang.String toXmlString() { return _portletPreferences.toXmlString(); } /** * Returns the company ID of this portlet preferences. * * @return the company ID of this portlet preferences */ @Override public long getCompanyId() { return _portletPreferences.getCompanyId(); } /** * Returns the mvcc version of this portlet preferences. * * @return the mvcc version of this portlet preferences */ @Override public long getMvccVersion() { return _portletPreferences.getMvccVersion(); } /** * Returns the owner ID of this portlet preferences. * * @return the owner ID of this portlet preferences */ @Override public long getOwnerId() { return _portletPreferences.getOwnerId(); } /** * Returns the plid of this portlet preferences. * * @return the plid of this portlet preferences */ @Override public long getPlid() { return _portletPreferences.getPlid(); } /** * Returns the portlet preferences ID of this portlet preferences. * * @return the portlet preferences ID of this portlet preferences */ @Override public long getPortletPreferencesId() { return _portletPreferences.getPortletPreferencesId(); } /** * Returns the primary key of this portlet preferences. * * @return the primary key of this portlet preferences */ @Override public long getPrimaryKey() { return _portletPreferences.getPrimaryKey(); } @Override public void persist() { _portletPreferences.persist(); } @Override public void setCachedModel(boolean cachedModel) { _portletPreferences.setCachedModel(cachedModel); } /** * Sets the company ID of this portlet preferences. * * @param companyId the company ID of this portlet preferences */ @Override public void setCompanyId(long companyId) { _portletPreferences.setCompanyId(companyId); } @Override public void setExpandoBridgeAttributes(BaseModel<?> baseModel) { _portletPreferences.setExpandoBridgeAttributes(baseModel); } @Override public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge) { _portletPreferences.setExpandoBridgeAttributes(expandoBridge); } @Override public void setExpandoBridgeAttributes(ServiceContext serviceContext) { _portletPreferences.setExpandoBridgeAttributes(serviceContext); } /** * Sets the mvcc version of this portlet preferences. * * @param mvccVersion the mvcc version of this portlet preferences */ @Override public void setMvccVersion(long mvccVersion) { _portletPreferences.setMvccVersion(mvccVersion); } @Override public void setNew(boolean n) { _portletPreferences.setNew(n); } /** * Sets the owner ID of this portlet preferences. * * @param ownerId the owner ID of this portlet preferences */ @Override public void setOwnerId(long ownerId) { _portletPreferences.setOwnerId(ownerId); } /** * Sets the owner type of this portlet preferences. * * @param ownerType the owner type of this portlet preferences */ @Override public void setOwnerType(int ownerType) { _portletPreferences.setOwnerType(ownerType); } /** * Sets the plid of this portlet preferences. * * @param plid the plid of this portlet preferences */ @Override public void setPlid(long plid) { _portletPreferences.setPlid(plid); } /** * Sets the portlet ID of this portlet preferences. * * @param portletId the portlet ID of this portlet preferences */ @Override public void setPortletId(java.lang.String portletId) { _portletPreferences.setPortletId(portletId); } /** * Sets the portlet preferences ID of this portlet preferences. * * @param portletPreferencesId the portlet preferences ID of this portlet preferences */ @Override public void setPortletPreferencesId(long portletPreferencesId) { _portletPreferences.setPortletPreferencesId(portletPreferencesId); } /** * Sets the preferences of this portlet preferences. * * @param preferences the preferences of this portlet preferences */ @Override public void setPreferences(java.lang.String preferences) { _portletPreferences.setPreferences(preferences); } /** * Sets the primary key of this portlet preferences. * * @param primaryKey the primary key of this portlet preferences */ @Override public void setPrimaryKey(long primaryKey) { _portletPreferences.setPrimaryKey(primaryKey); } @Override public void setPrimaryKeyObj(Serializable primaryKeyObj) { _portletPreferences.setPrimaryKeyObj(primaryKeyObj); } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof PortletPreferencesWrapper)) { return false; } PortletPreferencesWrapper portletPreferencesWrapper = (PortletPreferencesWrapper)obj; if (Objects.equals(_portletPreferences, portletPreferencesWrapper._portletPreferences)) { return true; } return false; } @Override public PortletPreferences getWrappedModel() { return _portletPreferences; } @Override public boolean isEntityCacheEnabled() { return _portletPreferences.isEntityCacheEnabled(); } @Override public boolean isFinderCacheEnabled() { return _portletPreferences.isFinderCacheEnabled(); } @Override public void resetOriginalValues() { _portletPreferences.resetOriginalValues(); } private final PortletPreferences _portletPreferences; }