All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liferay.portal.model.LayoutSetWrapper Maven / Gradle / Ivy

/**
 * Copyright (c) 2000-2013 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.model;

import aQute.bnd.annotation.ProviderType;

import com.liferay.portal.kernel.util.Validator;

import java.util.Date;
import java.util.HashMap;
import java.util.Map;

/**
 * 

* This class is a wrapper for {@link LayoutSet}. *

* * @author Brian Wing Shun Chan * @see LayoutSet * @generated */ @ProviderType public class LayoutSetWrapper implements LayoutSet, ModelWrapper { public LayoutSetWrapper(LayoutSet layoutSet) { _layoutSet = layoutSet; } @Override public Class getModelClass() { return LayoutSet.class; } @Override public String getModelClassName() { return LayoutSet.class.getName(); } @Override public Map getModelAttributes() { Map attributes = new HashMap(); attributes.put("layoutSetId", getLayoutSetId()); attributes.put("groupId", getGroupId()); attributes.put("companyId", getCompanyId()); attributes.put("createDate", getCreateDate()); attributes.put("modifiedDate", getModifiedDate()); attributes.put("privateLayout", getPrivateLayout()); attributes.put("logo", getLogo()); attributes.put("logoId", getLogoId()); attributes.put("themeId", getThemeId()); attributes.put("colorSchemeId", getColorSchemeId()); attributes.put("wapThemeId", getWapThemeId()); attributes.put("wapColorSchemeId", getWapColorSchemeId()); attributes.put("css", getCss()); attributes.put("pageCount", getPageCount()); attributes.put("settings", getSettings()); attributes.put("layoutSetPrototypeUuid", getLayoutSetPrototypeUuid()); attributes.put("layoutSetPrototypeLinkEnabled", getLayoutSetPrototypeLinkEnabled()); return attributes; } @Override public void setModelAttributes(Map attributes) { Long layoutSetId = (Long)attributes.get("layoutSetId"); if (layoutSetId != null) { setLayoutSetId(layoutSetId); } Long groupId = (Long)attributes.get("groupId"); if (groupId != null) { setGroupId(groupId); } Long companyId = (Long)attributes.get("companyId"); if (companyId != null) { setCompanyId(companyId); } Date createDate = (Date)attributes.get("createDate"); if (createDate != null) { setCreateDate(createDate); } Date modifiedDate = (Date)attributes.get("modifiedDate"); if (modifiedDate != null) { setModifiedDate(modifiedDate); } Boolean privateLayout = (Boolean)attributes.get("privateLayout"); if (privateLayout != null) { setPrivateLayout(privateLayout); } Boolean logo = (Boolean)attributes.get("logo"); if (logo != null) { setLogo(logo); } Long logoId = (Long)attributes.get("logoId"); if (logoId != null) { setLogoId(logoId); } String themeId = (String)attributes.get("themeId"); if (themeId != null) { setThemeId(themeId); } String colorSchemeId = (String)attributes.get("colorSchemeId"); if (colorSchemeId != null) { setColorSchemeId(colorSchemeId); } String wapThemeId = (String)attributes.get("wapThemeId"); if (wapThemeId != null) { setWapThemeId(wapThemeId); } String wapColorSchemeId = (String)attributes.get("wapColorSchemeId"); if (wapColorSchemeId != null) { setWapColorSchemeId(wapColorSchemeId); } String css = (String)attributes.get("css"); if (css != null) { setCss(css); } Integer pageCount = (Integer)attributes.get("pageCount"); if (pageCount != null) { setPageCount(pageCount); } String settings = (String)attributes.get("settings"); if (settings != null) { setSettings(settings); } String layoutSetPrototypeUuid = (String)attributes.get( "layoutSetPrototypeUuid"); if (layoutSetPrototypeUuid != null) { setLayoutSetPrototypeUuid(layoutSetPrototypeUuid); } Boolean layoutSetPrototypeLinkEnabled = (Boolean)attributes.get( "layoutSetPrototypeLinkEnabled"); if (layoutSetPrototypeLinkEnabled != null) { setLayoutSetPrototypeLinkEnabled(layoutSetPrototypeLinkEnabled); } } /** * Returns the primary key of this layout set. * * @return the primary key of this layout set */ @Override public long getPrimaryKey() { return _layoutSet.getPrimaryKey(); } /** * Sets the primary key of this layout set. * * @param primaryKey the primary key of this layout set */ @Override public void setPrimaryKey(long primaryKey) { _layoutSet.setPrimaryKey(primaryKey); } /** * Returns the layout set ID of this layout set. * * @return the layout set ID of this layout set */ @Override public long getLayoutSetId() { return _layoutSet.getLayoutSetId(); } /** * Sets the layout set ID of this layout set. * * @param layoutSetId the layout set ID of this layout set */ @Override public void setLayoutSetId(long layoutSetId) { _layoutSet.setLayoutSetId(layoutSetId); } /** * Returns the group ID of this layout set. * * @return the group ID of this layout set */ @Override public long getGroupId() { return _layoutSet.getGroupId(); } /** * Sets the group ID of this layout set. * * @param groupId the group ID of this layout set */ @Override public void setGroupId(long groupId) { _layoutSet.setGroupId(groupId); } /** * Returns the company ID of this layout set. * * @return the company ID of this layout set */ @Override public long getCompanyId() { return _layoutSet.getCompanyId(); } /** * Sets the company ID of this layout set. * * @param companyId the company ID of this layout set */ @Override public void setCompanyId(long companyId) { _layoutSet.setCompanyId(companyId); } /** * Returns the create date of this layout set. * * @return the create date of this layout set */ @Override public java.util.Date getCreateDate() { return _layoutSet.getCreateDate(); } /** * Sets the create date of this layout set. * * @param createDate the create date of this layout set */ @Override public void setCreateDate(java.util.Date createDate) { _layoutSet.setCreateDate(createDate); } /** * Returns the modified date of this layout set. * * @return the modified date of this layout set */ @Override public java.util.Date getModifiedDate() { return _layoutSet.getModifiedDate(); } /** * Sets the modified date of this layout set. * * @param modifiedDate the modified date of this layout set */ @Override public void setModifiedDate(java.util.Date modifiedDate) { _layoutSet.setModifiedDate(modifiedDate); } /** * Returns the private layout of this layout set. * * @return the private layout of this layout set */ @Override public boolean getPrivateLayout() { return _layoutSet.getPrivateLayout(); } /** * Returns true if this layout set is private layout. * * @return true if this layout set is private layout; false otherwise */ @Override public boolean isPrivateLayout() { return _layoutSet.isPrivateLayout(); } /** * Sets whether this layout set is private layout. * * @param privateLayout the private layout of this layout set */ @Override public void setPrivateLayout(boolean privateLayout) { _layoutSet.setPrivateLayout(privateLayout); } /** * Returns the logo of this layout set. * * @return the logo of this layout set */ @Override public boolean getLogo() { return _layoutSet.getLogo(); } /** * Returns true if this layout set is logo. * * @return true if this layout set is logo; false otherwise */ @Override public boolean isLogo() { return _layoutSet.isLogo(); } /** * Sets whether this layout set is logo. * * @param logo the logo of this layout set */ @Override public void setLogo(boolean logo) { _layoutSet.setLogo(logo); } /** * Returns the logo ID of this layout set. * * @return the logo ID of this layout set */ @Override public long getLogoId() { return _layoutSet.getLogoId(); } /** * Sets the logo ID of this layout set. * * @param logoId the logo ID of this layout set */ @Override public void setLogoId(long logoId) { _layoutSet.setLogoId(logoId); } /** * Returns the theme ID of this layout set. * * @return the theme ID of this layout set */ @Override public java.lang.String getThemeId() { return _layoutSet.getThemeId(); } /** * Sets the theme ID of this layout set. * * @param themeId the theme ID of this layout set */ @Override public void setThemeId(java.lang.String themeId) { _layoutSet.setThemeId(themeId); } /** * Returns the color scheme ID of this layout set. * * @return the color scheme ID of this layout set */ @Override public java.lang.String getColorSchemeId() { return _layoutSet.getColorSchemeId(); } /** * Sets the color scheme ID of this layout set. * * @param colorSchemeId the color scheme ID of this layout set */ @Override public void setColorSchemeId(java.lang.String colorSchemeId) { _layoutSet.setColorSchemeId(colorSchemeId); } /** * Returns the wap theme ID of this layout set. * * @return the wap theme ID of this layout set */ @Override public java.lang.String getWapThemeId() { return _layoutSet.getWapThemeId(); } /** * Sets the wap theme ID of this layout set. * * @param wapThemeId the wap theme ID of this layout set */ @Override public void setWapThemeId(java.lang.String wapThemeId) { _layoutSet.setWapThemeId(wapThemeId); } /** * Returns the wap color scheme ID of this layout set. * * @return the wap color scheme ID of this layout set */ @Override public java.lang.String getWapColorSchemeId() { return _layoutSet.getWapColorSchemeId(); } /** * Sets the wap color scheme ID of this layout set. * * @param wapColorSchemeId the wap color scheme ID of this layout set */ @Override public void setWapColorSchemeId(java.lang.String wapColorSchemeId) { _layoutSet.setWapColorSchemeId(wapColorSchemeId); } /** * Returns the css of this layout set. * * @return the css of this layout set */ @Override public java.lang.String getCss() { return _layoutSet.getCss(); } /** * Sets the css of this layout set. * * @param css the css of this layout set */ @Override public void setCss(java.lang.String css) { _layoutSet.setCss(css); } /** * Returns the page count of this layout set. * * @return the page count of this layout set */ @Override public int getPageCount() { return _layoutSet.getPageCount(); } /** * Sets the page count of this layout set. * * @param pageCount the page count of this layout set */ @Override public void setPageCount(int pageCount) { _layoutSet.setPageCount(pageCount); } /** * Returns the settings of this layout set. * * @return the settings of this layout set */ @Override public java.lang.String getSettings() { return _layoutSet.getSettings(); } /** * Sets the settings of this layout set. * * @param settings the settings of this layout set */ @Override public void setSettings(java.lang.String settings) { _layoutSet.setSettings(settings); } /** * Returns the layout set prototype uuid of this layout set. * * @return the layout set prototype uuid of this layout set */ @Override public java.lang.String getLayoutSetPrototypeUuid() { return _layoutSet.getLayoutSetPrototypeUuid(); } /** * Sets the layout set prototype uuid of this layout set. * * @param layoutSetPrototypeUuid the layout set prototype uuid of this layout set */ @Override public void setLayoutSetPrototypeUuid( java.lang.String layoutSetPrototypeUuid) { _layoutSet.setLayoutSetPrototypeUuid(layoutSetPrototypeUuid); } /** * Returns the layout set prototype link enabled of this layout set. * * @return the layout set prototype link enabled of this layout set */ @Override public boolean getLayoutSetPrototypeLinkEnabled() { return _layoutSet.getLayoutSetPrototypeLinkEnabled(); } /** * Returns true if this layout set is layout set prototype link enabled. * * @return true if this layout set is layout set prototype link enabled; false otherwise */ @Override public boolean isLayoutSetPrototypeLinkEnabled() { return _layoutSet.isLayoutSetPrototypeLinkEnabled(); } /** * Sets whether this layout set is layout set prototype link enabled. * * @param layoutSetPrototypeLinkEnabled the layout set prototype link enabled of this layout set */ @Override public void setLayoutSetPrototypeLinkEnabled( boolean layoutSetPrototypeLinkEnabled) { _layoutSet.setLayoutSetPrototypeLinkEnabled(layoutSetPrototypeLinkEnabled); } @Override public boolean isNew() { return _layoutSet.isNew(); } @Override public void setNew(boolean n) { _layoutSet.setNew(n); } @Override public boolean isCachedModel() { return _layoutSet.isCachedModel(); } @Override public void setCachedModel(boolean cachedModel) { _layoutSet.setCachedModel(cachedModel); } @Override public boolean isEscapedModel() { return _layoutSet.isEscapedModel(); } @Override public java.io.Serializable getPrimaryKeyObj() { return _layoutSet.getPrimaryKeyObj(); } @Override public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) { _layoutSet.setPrimaryKeyObj(primaryKeyObj); } @Override public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() { return _layoutSet.getExpandoBridge(); } @Override public void setExpandoBridgeAttributes( com.liferay.portal.model.BaseModel baseModel) { _layoutSet.setExpandoBridgeAttributes(baseModel); } @Override public void setExpandoBridgeAttributes( com.liferay.portlet.expando.model.ExpandoBridge expandoBridge) { _layoutSet.setExpandoBridgeAttributes(expandoBridge); } @Override public void setExpandoBridgeAttributes( com.liferay.portal.service.ServiceContext serviceContext) { _layoutSet.setExpandoBridgeAttributes(serviceContext); } @Override public java.lang.Object clone() { return new LayoutSetWrapper((LayoutSet)_layoutSet.clone()); } @Override public int compareTo(com.liferay.portal.model.LayoutSet layoutSet) { return _layoutSet.compareTo(layoutSet); } @Override public int hashCode() { return _layoutSet.hashCode(); } @Override public com.liferay.portal.model.CacheModel toCacheModel() { return _layoutSet.toCacheModel(); } @Override public com.liferay.portal.model.LayoutSet toEscapedModel() { return new LayoutSetWrapper(_layoutSet.toEscapedModel()); } @Override public com.liferay.portal.model.LayoutSet toUnescapedModel() { return new LayoutSetWrapper(_layoutSet.toUnescapedModel()); } @Override public java.lang.String toString() { return _layoutSet.toString(); } @Override public java.lang.String toXmlString() { return _layoutSet.toXmlString(); } @Override public void persist() throws com.liferay.portal.kernel.exception.SystemException { _layoutSet.persist(); } @Override public com.liferay.portal.model.ColorScheme getColorScheme() throws com.liferay.portal.kernel.exception.SystemException { return _layoutSet.getColorScheme(); } @Override public java.lang.String getCompanyFallbackVirtualHostname() { return _layoutSet.getCompanyFallbackVirtualHostname(); } @Override public com.liferay.portal.model.Group getGroup() throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { return _layoutSet.getGroup(); } @Override public long getLayoutSetPrototypeId() throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { return _layoutSet.getLayoutSetPrototypeId(); } @Override public long getLiveLogoId() { return _layoutSet.getLiveLogoId(); } @Override public com.liferay.portal.kernel.util.UnicodeProperties getSettingsProperties() { return _layoutSet.getSettingsProperties(); } @Override public java.lang.String getSettingsProperty(java.lang.String key) { return _layoutSet.getSettingsProperty(key); } @Override public com.liferay.portal.model.Theme getTheme() throws com.liferay.portal.kernel.exception.SystemException { return _layoutSet.getTheme(); } @Override public java.lang.String getThemeSetting(java.lang.String key, java.lang.String device) throws com.liferay.portal.kernel.exception.SystemException { return _layoutSet.getThemeSetting(key, device); } @Override public java.lang.String getVirtualHostname() { return _layoutSet.getVirtualHostname(); } @Override public com.liferay.portal.model.ColorScheme getWapColorScheme() throws com.liferay.portal.kernel.exception.SystemException { return _layoutSet.getWapColorScheme(); } @Override public com.liferay.portal.model.Theme getWapTheme() throws com.liferay.portal.kernel.exception.SystemException { return _layoutSet.getWapTheme(); } @Override public boolean isLayoutSetPrototypeLinkActive() { return _layoutSet.isLayoutSetPrototypeLinkActive(); } @Override public void setCompanyFallbackVirtualHostname( java.lang.String companyFallbackVirtualHostname) { _layoutSet.setCompanyFallbackVirtualHostname(companyFallbackVirtualHostname); } @Override public void setSettingsProperties( com.liferay.portal.kernel.util.UnicodeProperties settingsProperties) { _layoutSet.setSettingsProperties(settingsProperties); } @Override public void setVirtualHostname(java.lang.String virtualHostname) { _layoutSet.setVirtualHostname(virtualHostname); } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof LayoutSetWrapper)) { return false; } LayoutSetWrapper layoutSetWrapper = (LayoutSetWrapper)obj; if (Validator.equals(_layoutSet, layoutSetWrapper._layoutSet)) { return true; } return false; } /** * @deprecated As of 6.1.0, replaced by {@link #getWrappedModel} */ public LayoutSet getWrappedLayoutSet() { return _layoutSet; } @Override public LayoutSet getWrappedModel() { return _layoutSet; } @Override public void resetOriginalValues() { _layoutSet.resetOriginalValues(); } private LayoutSet _layoutSet; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy