1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portal.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="SubscriptionSoap.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.portal.service.http.SubscriptionServiceSoap}.
34   * </p>
35   *
36   * @author    Brian Wing Shun Chan
37   * @see       com.liferay.portal.service.http.SubscriptionServiceSoap
38   * @generated
39   */
40  public class SubscriptionSoap implements Serializable {
41      public static SubscriptionSoap toSoapModel(Subscription model) {
42          SubscriptionSoap soapModel = new SubscriptionSoap();
43  
44          soapModel.setSubscriptionId(model.getSubscriptionId());
45          soapModel.setCompanyId(model.getCompanyId());
46          soapModel.setUserId(model.getUserId());
47          soapModel.setUserName(model.getUserName());
48          soapModel.setCreateDate(model.getCreateDate());
49          soapModel.setModifiedDate(model.getModifiedDate());
50          soapModel.setClassNameId(model.getClassNameId());
51          soapModel.setClassPK(model.getClassPK());
52          soapModel.setFrequency(model.getFrequency());
53  
54          return soapModel;
55      }
56  
57      public static SubscriptionSoap[] toSoapModels(Subscription[] models) {
58          SubscriptionSoap[] soapModels = new SubscriptionSoap[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 SubscriptionSoap[][] toSoapModels(Subscription[][] models) {
68          SubscriptionSoap[][] soapModels = null;
69  
70          if (models.length > 0) {
71              soapModels = new SubscriptionSoap[models.length][models[0].length];
72          }
73          else {
74              soapModels = new SubscriptionSoap[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 SubscriptionSoap[] toSoapModels(List<Subscription> models) {
85          List<SubscriptionSoap> soapModels = new ArrayList<SubscriptionSoap>(models.size());
86  
87          for (Subscription model : models) {
88              soapModels.add(toSoapModel(model));
89          }
90  
91          return soapModels.toArray(new SubscriptionSoap[soapModels.size()]);
92      }
93  
94      public SubscriptionSoap() {
95      }
96  
97      public long getPrimaryKey() {
98          return _subscriptionId;
99      }
100 
101     public void setPrimaryKey(long pk) {
102         setSubscriptionId(pk);
103     }
104 
105     public long getSubscriptionId() {
106         return _subscriptionId;
107     }
108 
109     public void setSubscriptionId(long subscriptionId) {
110         _subscriptionId = subscriptionId;
111     }
112 
113     public long getCompanyId() {
114         return _companyId;
115     }
116 
117     public void setCompanyId(long companyId) {
118         _companyId = companyId;
119     }
120 
121     public long getUserId() {
122         return _userId;
123     }
124 
125     public void setUserId(long userId) {
126         _userId = userId;
127     }
128 
129     public String getUserName() {
130         return _userName;
131     }
132 
133     public void setUserName(String userName) {
134         _userName = userName;
135     }
136 
137     public Date getCreateDate() {
138         return _createDate;
139     }
140 
141     public void setCreateDate(Date createDate) {
142         _createDate = createDate;
143     }
144 
145     public Date getModifiedDate() {
146         return _modifiedDate;
147     }
148 
149     public void setModifiedDate(Date modifiedDate) {
150         _modifiedDate = modifiedDate;
151     }
152 
153     public long getClassNameId() {
154         return _classNameId;
155     }
156 
157     public void setClassNameId(long classNameId) {
158         _classNameId = classNameId;
159     }
160 
161     public long getClassPK() {
162         return _classPK;
163     }
164 
165     public void setClassPK(long classPK) {
166         _classPK = classPK;
167     }
168 
169     public String getFrequency() {
170         return _frequency;
171     }
172 
173     public void setFrequency(String frequency) {
174         _frequency = frequency;
175     }
176 
177     private long _subscriptionId;
178     private long _companyId;
179     private long _userId;
180     private String _userName;
181     private Date _createDate;
182     private Date _modifiedDate;
183     private long _classNameId;
184     private long _classPK;
185     private String _frequency;
186 }