/**
* 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.asset.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.portlet.asset.service.http.AssetEntryServiceSoap}.
*
* @author Brian Wing Shun Chan
* @see com.liferay.portlet.asset.service.http.AssetEntryServiceSoap
* @generated
*/
@ProviderType
public class AssetEntrySoap implements Serializable {
public static AssetEntrySoap toSoapModel(AssetEntry model) {
AssetEntrySoap soapModel = new AssetEntrySoap();
soapModel.setEntryId(model.getEntryId());
soapModel.setGroupId(model.getGroupId());
soapModel.setCompanyId(model.getCompanyId());
soapModel.setUserId(model.getUserId());
soapModel.setUserName(model.getUserName());
soapModel.setCreateDate(model.getCreateDate());
soapModel.setModifiedDate(model.getModifiedDate());
soapModel.setClassNameId(model.getClassNameId());
soapModel.setClassPK(model.getClassPK());
soapModel.setClassUuid(model.getClassUuid());
soapModel.setClassTypeId(model.getClassTypeId());
soapModel.setListable(model.getListable());
soapModel.setVisible(model.getVisible());
soapModel.setStartDate(model.getStartDate());
soapModel.setEndDate(model.getEndDate());
soapModel.setPublishDate(model.getPublishDate());
soapModel.setExpirationDate(model.getExpirationDate());
soapModel.setMimeType(model.getMimeType());
soapModel.setTitle(model.getTitle());
soapModel.setDescription(model.getDescription());
soapModel.setSummary(model.getSummary());
soapModel.setUrl(model.getUrl());
soapModel.setLayoutUuid(model.getLayoutUuid());
soapModel.setHeight(model.getHeight());
soapModel.setWidth(model.getWidth());
soapModel.setPriority(model.getPriority());
soapModel.setViewCount(model.getViewCount());
return soapModel;
}
public static AssetEntrySoap[] toSoapModels(AssetEntry[] models) {
AssetEntrySoap[] soapModels = new AssetEntrySoap[models.length];
for (int i = 0; i < models.length; i++) {
soapModels[i] = toSoapModel(models[i]);
}
return soapModels;
}
public static AssetEntrySoap[][] toSoapModels(AssetEntry[][] models) {
AssetEntrySoap[][] soapModels = null;
if (models.length > 0) {
soapModels = new AssetEntrySoap[models.length][models[0].length];
}
else {
soapModels = new AssetEntrySoap[0][0];
}
for (int i = 0; i < models.length; i++) {
soapModels[i] = toSoapModels(models[i]);
}
return soapModels;
}
public static AssetEntrySoap[] toSoapModels(List<AssetEntry> models) {
List<AssetEntrySoap> soapModels = new ArrayList<AssetEntrySoap>(models.size());
for (AssetEntry model : models) {
soapModels.add(toSoapModel(model));
}
return soapModels.toArray(new AssetEntrySoap[soapModels.size()]);
}
public AssetEntrySoap() {
}
public long getPrimaryKey() {
return _entryId;
}
public void setPrimaryKey(long pk) {
setEntryId(pk);
}
public long getEntryId() {
return _entryId;
}
public void setEntryId(long entryId) {
_entryId = entryId;
}
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 long getUserId() {
return _userId;
}
public void setUserId(long userId) {
_userId = userId;
}
public String getUserName() {
return _userName;
}
public void setUserName(String userName) {
_userName = userName;
}
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 long getClassNameId() {
return _classNameId;
}
public void setClassNameId(long classNameId) {
_classNameId = classNameId;
}
public long getClassPK() {
return _classPK;
}
public void setClassPK(long classPK) {
_classPK = classPK;
}
public String getClassUuid() {
return _classUuid;
}
public void setClassUuid(String classUuid) {
_classUuid = classUuid;
}
public long getClassTypeId() {
return _classTypeId;
}
public void setClassTypeId(long classTypeId) {
_classTypeId = classTypeId;
}
public boolean getListable() {
return _listable;
}
public boolean isListable() {
return _listable;
}
public void setListable(boolean listable) {
_listable = listable;
}
public boolean getVisible() {
return _visible;
}
public boolean isVisible() {
return _visible;
}
public void setVisible(boolean visible) {
_visible = visible;
}
public Date getStartDate() {
return _startDate;
}
public void setStartDate(Date startDate) {
_startDate = startDate;
}
public Date getEndDate() {
return _endDate;
}
public void setEndDate(Date endDate) {
_endDate = endDate;
}
public Date getPublishDate() {
return _publishDate;
}
public void setPublishDate(Date publishDate) {
_publishDate = publishDate;
}
public Date getExpirationDate() {
return _expirationDate;
}
public void setExpirationDate(Date expirationDate) {
_expirationDate = expirationDate;
}
public String getMimeType() {
return _mimeType;
}
public void setMimeType(String mimeType) {
_mimeType = mimeType;
}
public String getTitle() {
return _title;
}
public void setTitle(String title) {
_title = title;
}
public String getDescription() {
return _description;
}
public void setDescription(String description) {
_description = description;
}
public String getSummary() {
return _summary;
}
public void setSummary(String summary) {
_summary = summary;
}
public String getUrl() {
return _url;
}
public void setUrl(String url) {
_url = url;
}
public String getLayoutUuid() {
return _layoutUuid;
}
public void setLayoutUuid(String layoutUuid) {
_layoutUuid = layoutUuid;
}
public int getHeight() {
return _height;
}
public void setHeight(int height) {
_height = height;
}
public int getWidth() {
return _width;
}
public void setWidth(int width) {
_width = width;
}
public double getPriority() {
return _priority;
}
public void setPriority(double priority) {
_priority = priority;
}
public int getViewCount() {
return _viewCount;
}
public void setViewCount(int viewCount) {
_viewCount = viewCount;
}
private long _entryId;
private long _groupId;
private long _companyId;
private long _userId;
private String _userName;
private Date _createDate;
private Date _modifiedDate;
private long _classNameId;
private long _classPK;
private String _classUuid;
private long _classTypeId;
private boolean _listable;
private boolean _visible;
private Date _startDate;
private Date _endDate;
private Date _publishDate;
private Date _expirationDate;
private String _mimeType;
private String _title;
private String _description;
private String _summary;
private String _url;
private String _layoutUuid;
private int _height;
private int _width;
private double _priority;
private int _viewCount;
}