/** * 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.contacts.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.contacts.service.http.EntryServiceSoap}. * * @author Brian Wing Shun Chan * @see com.liferay.contacts.service.http.EntryServiceSoap * @generated */ @ProviderType public class EntrySoap implements Serializable { public static EntrySoap toSoapModel(Entry model) { EntrySoap soapModel = new EntrySoap(); 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.setFullName(model.getFullName()); soapModel.setEmailAddress(model.getEmailAddress()); soapModel.setComments(model.getComments()); return soapModel; } public static EntrySoap[] toSoapModels(Entry[] models) { EntrySoap[] soapModels = new EntrySoap[models.length]; for (int i = 0; i < models.length; i++) { soapModels[i] = toSoapModel(models[i]); } return soapModels; } public static EntrySoap[][] toSoapModels(Entry[][] models) { EntrySoap[][] soapModels = null; if (models.length > 0) { soapModels = new EntrySoap[models.length][models[0].length]; } else { soapModels = new EntrySoap[0][0]; } for (int i = 0; i < models.length; i++) { soapModels[i] = toSoapModels(models[i]); } return soapModels; } public static EntrySoap[] toSoapModels(List<Entry> models) { List<EntrySoap> soapModels = new ArrayList<EntrySoap>(models.size()); for (Entry model : models) { soapModels.add(toSoapModel(model)); } return soapModels.toArray(new EntrySoap[soapModels.size()]); } public EntrySoap() { } 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 String getFullName() { return _fullName; } public void setFullName(String fullName) { _fullName = fullName; } public String getEmailAddress() { return _emailAddress; } public void setEmailAddress(String emailAddress) { _emailAddress = emailAddress; } public String getComments() { return _comments; } public void setComments(String comments) { _comments = comments; } private long _entryId; private long _groupId; private long _companyId; private long _userId; private String _userName; private Date _createDate; private Date _modifiedDate; private String _fullName; private String _emailAddress; private String _comments; }