com.liferay.portal.kernel.model.LayoutSetSoap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.portal.kernel Show documentation
Show all versions of com.liferay.portal.kernel Show documentation
Contains interfaces for the portal services. Interfaces are only loaded by the global class loader and are shared by all plugins.
/**
* 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 java.io.Serializable;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
/**
* This class is used by SOAP remote services, specifically {@link com.liferay.portal.service.http.LayoutSetServiceSoap}.
*
* @author Brian Wing Shun Chan
* @see com.liferay.portal.service.http.LayoutSetServiceSoap
* @generated
*/
@ProviderType
public class LayoutSetSoap implements Serializable {
public static LayoutSetSoap toSoapModel(LayoutSet model) {
LayoutSetSoap soapModel = new LayoutSetSoap();
soapModel.setMvccVersion(model.getMvccVersion());
soapModel.setLayoutSetId(model.getLayoutSetId());
soapModel.setGroupId(model.getGroupId());
soapModel.setCompanyId(model.getCompanyId());
soapModel.setCreateDate(model.getCreateDate());
soapModel.setModifiedDate(model.getModifiedDate());
soapModel.setPrivateLayout(model.getPrivateLayout());
soapModel.setLogoId(model.getLogoId());
soapModel.setThemeId(model.getThemeId());
soapModel.setColorSchemeId(model.getColorSchemeId());
soapModel.setCss(model.getCss());
soapModel.setPageCount(model.getPageCount());
soapModel.setSettings(model.getSettings());
soapModel.setLayoutSetPrototypeUuid(model.getLayoutSetPrototypeUuid());
soapModel.setLayoutSetPrototypeLinkEnabled(model.getLayoutSetPrototypeLinkEnabled());
return soapModel;
}
public static LayoutSetSoap[] toSoapModels(LayoutSet[] models) {
LayoutSetSoap[] soapModels = new LayoutSetSoap[models.length];
for (int i = 0; i < models.length; i++) {
soapModels[i] = toSoapModel(models[i]);
}
return soapModels;
}
public static LayoutSetSoap[][] toSoapModels(LayoutSet[][] models) {
LayoutSetSoap[][] soapModels = null;
if (models.length > 0) {
soapModels = new LayoutSetSoap[models.length][models[0].length];
}
else {
soapModels = new LayoutSetSoap[0][0];
}
for (int i = 0; i < models.length; i++) {
soapModels[i] = toSoapModels(models[i]);
}
return soapModels;
}
public static LayoutSetSoap[] toSoapModels(List models) {
List soapModels = new ArrayList(models.size());
for (LayoutSet model : models) {
soapModels.add(toSoapModel(model));
}
return soapModels.toArray(new LayoutSetSoap[soapModels.size()]);
}
public LayoutSetSoap() {
}
public long getPrimaryKey() {
return _layoutSetId;
}
public void setPrimaryKey(long pk) {
setLayoutSetId(pk);
}
public long getMvccVersion() {
return _mvccVersion;
}
public void setMvccVersion(long mvccVersion) {
_mvccVersion = mvccVersion;
}
public long getLayoutSetId() {
return _layoutSetId;
}
public void setLayoutSetId(long layoutSetId) {
_layoutSetId = layoutSetId;
}
public long getGroupId() {
return _groupId;
}
public void setGroupId(long groupId) {
_groupId = groupId;
}
public long getCompanyId() {
return _companyId;
}
public void setCompanyId(long companyId) {
_companyId = companyId;
}
public Date getCreateDate() {
return _createDate;
}
public void setCreateDate(Date createDate) {
_createDate = createDate;
}
public Date getModifiedDate() {
return _modifiedDate;
}
public void setModifiedDate(Date modifiedDate) {
_modifiedDate = modifiedDate;
}
public boolean getPrivateLayout() {
return _privateLayout;
}
public boolean isPrivateLayout() {
return _privateLayout;
}
public void setPrivateLayout(boolean privateLayout) {
_privateLayout = privateLayout;
}
public long getLogoId() {
return _logoId;
}
public void setLogoId(long logoId) {
_logoId = logoId;
}
public String getThemeId() {
return _themeId;
}
public void setThemeId(String themeId) {
_themeId = themeId;
}
public String getColorSchemeId() {
return _colorSchemeId;
}
public void setColorSchemeId(String colorSchemeId) {
_colorSchemeId = colorSchemeId;
}
public String getCss() {
return _css;
}
public void setCss(String css) {
_css = css;
}
public int getPageCount() {
return _pageCount;
}
public void setPageCount(int pageCount) {
_pageCount = pageCount;
}
public String getSettings() {
return _settings;
}
public void setSettings(String settings) {
_settings = settings;
}
public String getLayoutSetPrototypeUuid() {
return _layoutSetPrototypeUuid;
}
public void setLayoutSetPrototypeUuid(String layoutSetPrototypeUuid) {
_layoutSetPrototypeUuid = layoutSetPrototypeUuid;
}
public boolean getLayoutSetPrototypeLinkEnabled() {
return _layoutSetPrototypeLinkEnabled;
}
public boolean isLayoutSetPrototypeLinkEnabled() {
return _layoutSetPrototypeLinkEnabled;
}
public void setLayoutSetPrototypeLinkEnabled(
boolean layoutSetPrototypeLinkEnabled) {
_layoutSetPrototypeLinkEnabled = layoutSetPrototypeLinkEnabled;
}
private long _mvccVersion;
private long _layoutSetId;
private long _groupId;
private long _companyId;
private Date _createDate;
private Date _modifiedDate;
private boolean _privateLayout;
private long _logoId;
private String _themeId;
private String _colorSchemeId;
private String _css;
private int _pageCount;
private String _settings;
private String _layoutSetPrototypeUuid;
private boolean _layoutSetPrototypeLinkEnabled;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy