1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   *
12   *
13   */
14  
15  package com.liferay.portlet.blogs.model;
16  
17  import java.io.Serializable;
18  
19  import java.util.ArrayList;
20  import java.util.Date;
21  import java.util.List;
22  
23  /**
24   * <a href="BlogsStatsUserSoap.java.html"><b><i>View Source</i></b></a>
25   *
26   * <p>
27   * ServiceBuilder generated this class. Modifications in this class will be
28   * overwritten the next time is generated.
29   * </p>
30   *
31   * <p>
32   * This class is used by
33   * {@link com.liferay.portlet.blogs.service.http.BlogsStatsUserServiceSoap}.
34   * </p>
35   *
36   * @author    Brian Wing Shun Chan
37   * @see       com.liferay.portlet.blogs.service.http.BlogsStatsUserServiceSoap
38   * @generated
39   */
40  public class BlogsStatsUserSoap implements Serializable {
41      public static BlogsStatsUserSoap toSoapModel(BlogsStatsUser model) {
42          BlogsStatsUserSoap soapModel = new BlogsStatsUserSoap();
43  
44          soapModel.setStatsUserId(model.getStatsUserId());
45          soapModel.setGroupId(model.getGroupId());
46          soapModel.setCompanyId(model.getCompanyId());
47          soapModel.setUserId(model.getUserId());
48          soapModel.setEntryCount(model.getEntryCount());
49          soapModel.setLastPostDate(model.getLastPostDate());
50          soapModel.setRatingsTotalEntries(model.getRatingsTotalEntries());
51          soapModel.setRatingsTotalScore(model.getRatingsTotalScore());
52          soapModel.setRatingsAverageScore(model.getRatingsAverageScore());
53  
54          return soapModel;
55      }
56  
57      public static BlogsStatsUserSoap[] toSoapModels(BlogsStatsUser[] models) {
58          BlogsStatsUserSoap[] soapModels = new BlogsStatsUserSoap[models.length];
59  
60          for (int i = 0; i < models.length; i++) {
61              soapModels[i] = toSoapModel(models[i]);
62          }
63  
64          return soapModels;
65      }
66  
67      public static BlogsStatsUserSoap[][] toSoapModels(BlogsStatsUser[][] models) {
68          BlogsStatsUserSoap[][] soapModels = null;
69  
70          if (models.length > 0) {
71              soapModels = new BlogsStatsUserSoap[models.length][models[0].length];
72          }
73          else {
74              soapModels = new BlogsStatsUserSoap[0][0];
75          }
76  
77          for (int i = 0; i < models.length; i++) {
78              soapModels[i] = toSoapModels(models[i]);
79          }
80  
81          return soapModels;
82      }
83  
84      public static BlogsStatsUserSoap[] toSoapModels(List<BlogsStatsUser> models) {
85          List<BlogsStatsUserSoap> soapModels = new ArrayList<BlogsStatsUserSoap>(models.size());
86  
87          for (BlogsStatsUser model : models) {
88              soapModels.add(toSoapModel(model));
89          }
90  
91          return soapModels.toArray(new BlogsStatsUserSoap[soapModels.size()]);
92      }
93  
94      public BlogsStatsUserSoap() {
95      }
96  
97      public long getPrimaryKey() {
98          return _statsUserId;
99      }
100 
101     public void setPrimaryKey(long pk) {
102         setStatsUserId(pk);
103     }
104 
105     public long getStatsUserId() {
106         return _statsUserId;
107     }
108 
109     public void setStatsUserId(long statsUserId) {
110         _statsUserId = statsUserId;
111     }
112 
113     public long getGroupId() {
114         return _groupId;
115     }
116 
117     public void setGroupId(long groupId) {
118         _groupId = groupId;
119     }
120 
121     public long getCompanyId() {
122         return _companyId;
123     }
124 
125     public void setCompanyId(long companyId) {
126         _companyId = companyId;
127     }
128 
129     public long getUserId() {
130         return _userId;
131     }
132 
133     public void setUserId(long userId) {
134         _userId = userId;
135     }
136 
137     public int getEntryCount() {
138         return _entryCount;
139     }
140 
141     public void setEntryCount(int entryCount) {
142         _entryCount = entryCount;
143     }
144 
145     public Date getLastPostDate() {
146         return _lastPostDate;
147     }
148 
149     public void setLastPostDate(Date lastPostDate) {
150         _lastPostDate = lastPostDate;
151     }
152 
153     public int getRatingsTotalEntries() {
154         return _ratingsTotalEntries;
155     }
156 
157     public void setRatingsTotalEntries(int ratingsTotalEntries) {
158         _ratingsTotalEntries = ratingsTotalEntries;
159     }
160 
161     public double getRatingsTotalScore() {
162         return _ratingsTotalScore;
163     }
164 
165     public void setRatingsTotalScore(double ratingsTotalScore) {
166         _ratingsTotalScore = ratingsTotalScore;
167     }
168 
169     public double getRatingsAverageScore() {
170         return _ratingsAverageScore;
171     }
172 
173     public void setRatingsAverageScore(double ratingsAverageScore) {
174         _ratingsAverageScore = ratingsAverageScore;
175     }
176 
177     private long _statsUserId;
178     private long _groupId;
179     private long _companyId;
180     private long _userId;
181     private int _entryCount;
182     private Date _lastPostDate;
183     private int _ratingsTotalEntries;
184     private double _ratingsTotalScore;
185     private double _ratingsAverageScore;
186 }