com.liferay.portlet.messageboards.model.MBMessageSoap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of portal-service Show documentation
Show all versions of portal-service 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-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.portlet.messageboards.model;
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.messageboards.service.http.MBMessageServiceSoap}.
*
* @author Brian Wing Shun Chan
* @see com.liferay.portlet.messageboards.service.http.MBMessageServiceSoap
* @generated
*/
public class MBMessageSoap implements Serializable {
public static MBMessageSoap toSoapModel(MBMessage model) {
MBMessageSoap soapModel = new MBMessageSoap();
soapModel.setUuid(model.getUuid());
soapModel.setMessageId(model.getMessageId());
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.setCategoryId(model.getCategoryId());
soapModel.setThreadId(model.getThreadId());
soapModel.setRootMessageId(model.getRootMessageId());
soapModel.setParentMessageId(model.getParentMessageId());
soapModel.setSubject(model.getSubject());
soapModel.setBody(model.getBody());
soapModel.setFormat(model.getFormat());
soapModel.setAnonymous(model.getAnonymous());
soapModel.setPriority(model.getPriority());
soapModel.setAllowPingbacks(model.getAllowPingbacks());
soapModel.setAnswer(model.getAnswer());
soapModel.setStatus(model.getStatus());
soapModel.setStatusByUserId(model.getStatusByUserId());
soapModel.setStatusByUserName(model.getStatusByUserName());
soapModel.setStatusDate(model.getStatusDate());
return soapModel;
}
public static MBMessageSoap[] toSoapModels(MBMessage[] models) {
MBMessageSoap[] soapModels = new MBMessageSoap[models.length];
for (int i = 0; i < models.length; i++) {
soapModels[i] = toSoapModel(models[i]);
}
return soapModels;
}
public static MBMessageSoap[][] toSoapModels(MBMessage[][] models) {
MBMessageSoap[][] soapModels = null;
if (models.length > 0) {
soapModels = new MBMessageSoap[models.length][models[0].length];
}
else {
soapModels = new MBMessageSoap[0][0];
}
for (int i = 0; i < models.length; i++) {
soapModels[i] = toSoapModels(models[i]);
}
return soapModels;
}
public static MBMessageSoap[] toSoapModels(List models) {
List soapModels = new ArrayList(models.size());
for (MBMessage model : models) {
soapModels.add(toSoapModel(model));
}
return soapModels.toArray(new MBMessageSoap[soapModels.size()]);
}
public MBMessageSoap() {
}
public long getPrimaryKey() {
return _messageId;
}
public void setPrimaryKey(long pk) {
setMessageId(pk);
}
public String getUuid() {
return _uuid;
}
public void setUuid(String uuid) {
_uuid = uuid;
}
public long getMessageId() {
return _messageId;
}
public void setMessageId(long messageId) {
_messageId = messageId;
}
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 long getCategoryId() {
return _categoryId;
}
public void setCategoryId(long categoryId) {
_categoryId = categoryId;
}
public long getThreadId() {
return _threadId;
}
public void setThreadId(long threadId) {
_threadId = threadId;
}
public long getRootMessageId() {
return _rootMessageId;
}
public void setRootMessageId(long rootMessageId) {
_rootMessageId = rootMessageId;
}
public long getParentMessageId() {
return _parentMessageId;
}
public void setParentMessageId(long parentMessageId) {
_parentMessageId = parentMessageId;
}
public String getSubject() {
return _subject;
}
public void setSubject(String subject) {
_subject = subject;
}
public String getBody() {
return _body;
}
public void setBody(String body) {
_body = body;
}
public String getFormat() {
return _format;
}
public void setFormat(String format) {
_format = format;
}
public boolean getAnonymous() {
return _anonymous;
}
public boolean isAnonymous() {
return _anonymous;
}
public void setAnonymous(boolean anonymous) {
_anonymous = anonymous;
}
public double getPriority() {
return _priority;
}
public void setPriority(double priority) {
_priority = priority;
}
public boolean getAllowPingbacks() {
return _allowPingbacks;
}
public boolean isAllowPingbacks() {
return _allowPingbacks;
}
public void setAllowPingbacks(boolean allowPingbacks) {
_allowPingbacks = allowPingbacks;
}
public boolean getAnswer() {
return _answer;
}
public boolean isAnswer() {
return _answer;
}
public void setAnswer(boolean answer) {
_answer = answer;
}
public int getStatus() {
return _status;
}
public void setStatus(int status) {
_status = status;
}
public long getStatusByUserId() {
return _statusByUserId;
}
public void setStatusByUserId(long statusByUserId) {
_statusByUserId = statusByUserId;
}
public String getStatusByUserName() {
return _statusByUserName;
}
public void setStatusByUserName(String statusByUserName) {
_statusByUserName = statusByUserName;
}
public Date getStatusDate() {
return _statusDate;
}
public void setStatusDate(Date statusDate) {
_statusDate = statusDate;
}
private String _uuid;
private long _messageId;
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 long _categoryId;
private long _threadId;
private long _rootMessageId;
private long _parentMessageId;
private String _subject;
private String _body;
private String _format;
private boolean _anonymous;
private double _priority;
private boolean _allowPingbacks;
private boolean _answer;
private int _status;
private long _statusByUserId;
private String _statusByUserName;
private Date _statusDate;
}