001: /**
002: * Copyright (c) 2000-2008 Liferay, Inc. All rights reserved.
003: *
004: * Permission is hereby granted, free of charge, to any person obtaining a copy
005: * of this software and associated documentation files (the "Software"), to deal
006: * in the Software without restriction, including without limitation the rights
007: * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
008: * copies of the Software, and to permit persons to whom the Software is
009: * furnished to do so, subject to the following conditions:
010: *
011: * The above copyright notice and this permission notice shall be included in
012: * all copies or substantial portions of the Software.
013: *
014: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
015: * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
016: * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
017: * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
018: * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
019: * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
020: * SOFTWARE.
021: */package com.liferay.portlet.messageboards.model;
022:
023: import java.io.Serializable;
024:
025: import java.util.ArrayList;
026: import java.util.List;
027:
028: /**
029: * <a href="MBMessageFlagSoap.java.html"><b><i>View Source</i></b></a>
030: *
031: * <p>
032: * ServiceBuilder generated this class. Modifications in this class will be
033: * overwritten the next time is generated.
034: * </p>
035: *
036: * <p>
037: * This class is used by
038: * <code>com.liferay.portlet.messageboards.service.http.MBMessageFlagServiceSoap</code>.
039: * </p>
040: *
041: * @author Brian Wing Shun Chan
042: *
043: * @see com.liferay.portlet.messageboards.service.http.MBMessageFlagServiceSoap
044: *
045: */
046: public class MBMessageFlagSoap implements Serializable {
047: public static MBMessageFlagSoap toSoapModel(MBMessageFlag model) {
048: MBMessageFlagSoap soapModel = new MBMessageFlagSoap();
049:
050: soapModel.setMessageFlagId(model.getMessageFlagId());
051: soapModel.setUserId(model.getUserId());
052: soapModel.setMessageId(model.getMessageId());
053: soapModel.setFlag(model.getFlag());
054:
055: return soapModel;
056: }
057:
058: public static MBMessageFlagSoap[] toSoapModels(List models) {
059: List soapModels = new ArrayList(models.size());
060:
061: for (int i = 0; i < models.size(); i++) {
062: MBMessageFlag model = (MBMessageFlag) models.get(i);
063:
064: soapModels.add(toSoapModel(model));
065: }
066:
067: return (MBMessageFlagSoap[]) soapModels
068: .toArray(new MBMessageFlagSoap[0]);
069: }
070:
071: public MBMessageFlagSoap() {
072: }
073:
074: public long getPrimaryKey() {
075: return _messageFlagId;
076: }
077:
078: public void setPrimaryKey(long pk) {
079: setMessageFlagId(pk);
080: }
081:
082: public long getMessageFlagId() {
083: return _messageFlagId;
084: }
085:
086: public void setMessageFlagId(long messageFlagId) {
087: _messageFlagId = messageFlagId;
088: }
089:
090: public long getUserId() {
091: return _userId;
092: }
093:
094: public void setUserId(long userId) {
095: _userId = userId;
096: }
097:
098: public long getMessageId() {
099: return _messageId;
100: }
101:
102: public void setMessageId(long messageId) {
103: _messageId = messageId;
104: }
105:
106: public int getFlag() {
107: return _flag;
108: }
109:
110: public void setFlag(int flag) {
111: _flag = flag;
112: }
113:
114: private long _messageFlagId;
115: private long _userId;
116: private long _messageId;
117: private int _flag;
118: }
|