1
19
20 package com.liferay.portlet.messageboards.model;
21
22 import java.io.Serializable;
23
24 import java.util.ArrayList;
25 import java.util.Date;
26 import java.util.List;
27
28
46 public class MBThreadSoap implements Serializable {
47 public static MBThreadSoap toSoapModel(MBThread model) {
48 MBThreadSoap soapModel = new MBThreadSoap();
49
50 soapModel.setThreadId(model.getThreadId());
51 soapModel.setGroupId(model.getGroupId());
52 soapModel.setCategoryId(model.getCategoryId());
53 soapModel.setRootMessageId(model.getRootMessageId());
54 soapModel.setMessageCount(model.getMessageCount());
55 soapModel.setViewCount(model.getViewCount());
56 soapModel.setLastPostByUserId(model.getLastPostByUserId());
57 soapModel.setLastPostDate(model.getLastPostDate());
58 soapModel.setPriority(model.getPriority());
59
60 return soapModel;
61 }
62
63 public static MBThreadSoap[] toSoapModels(MBThread[] models) {
64 MBThreadSoap[] soapModels = new MBThreadSoap[models.length];
65
66 for (int i = 0; i < models.length; i++) {
67 soapModels[i] = toSoapModel(models[i]);
68 }
69
70 return soapModels;
71 }
72
73 public static MBThreadSoap[][] toSoapModels(MBThread[][] models) {
74 MBThreadSoap[][] soapModels = null;
75
76 if (models.length > 0) {
77 soapModels = new MBThreadSoap[models.length][models[0].length];
78 }
79 else {
80 soapModels = new MBThreadSoap[0][0];
81 }
82
83 for (int i = 0; i < models.length; i++) {
84 soapModels[i] = toSoapModels(models[i]);
85 }
86
87 return soapModels;
88 }
89
90 public static MBThreadSoap[] toSoapModels(List<MBThread> models) {
91 List<MBThreadSoap> soapModels = new ArrayList<MBThreadSoap>(models.size());
92
93 for (MBThread model : models) {
94 soapModels.add(toSoapModel(model));
95 }
96
97 return soapModels.toArray(new MBThreadSoap[soapModels.size()]);
98 }
99
100 public MBThreadSoap() {
101 }
102
103 public long getPrimaryKey() {
104 return _threadId;
105 }
106
107 public void setPrimaryKey(long pk) {
108 setThreadId(pk);
109 }
110
111 public long getThreadId() {
112 return _threadId;
113 }
114
115 public void setThreadId(long threadId) {
116 _threadId = threadId;
117 }
118
119 public long getGroupId() {
120 return _groupId;
121 }
122
123 public void setGroupId(long groupId) {
124 _groupId = groupId;
125 }
126
127 public long getCategoryId() {
128 return _categoryId;
129 }
130
131 public void setCategoryId(long categoryId) {
132 _categoryId = categoryId;
133 }
134
135 public long getRootMessageId() {
136 return _rootMessageId;
137 }
138
139 public void setRootMessageId(long rootMessageId) {
140 _rootMessageId = rootMessageId;
141 }
142
143 public int getMessageCount() {
144 return _messageCount;
145 }
146
147 public void setMessageCount(int messageCount) {
148 _messageCount = messageCount;
149 }
150
151 public int getViewCount() {
152 return _viewCount;
153 }
154
155 public void setViewCount(int viewCount) {
156 _viewCount = viewCount;
157 }
158
159 public long getLastPostByUserId() {
160 return _lastPostByUserId;
161 }
162
163 public void setLastPostByUserId(long lastPostByUserId) {
164 _lastPostByUserId = lastPostByUserId;
165 }
166
167 public Date getLastPostDate() {
168 return _lastPostDate;
169 }
170
171 public void setLastPostDate(Date lastPostDate) {
172 _lastPostDate = lastPostDate;
173 }
174
175 public double getPriority() {
176 return _priority;
177 }
178
179 public void setPriority(double priority) {
180 _priority = priority;
181 }
182
183 private long _threadId;
184 private long _groupId;
185 private long _categoryId;
186 private long _rootMessageId;
187 private int _messageCount;
188 private int _viewCount;
189 private long _lastPostByUserId;
190 private Date _lastPostDate;
191 private double _priority;
192 }