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.messageboards.messaging;
16  
17  import java.io.Serializable;
18  
19  /**
20   * <a href="MailingListRequest.java.html"><b><i>View Source</i></b></a>
21   *
22   * @author Thiago Moreira
23   */
24  public class MailingListRequest implements Serializable {
25  
26      public long getCategoryId() {
27          return _categoryId;
28      }
29  
30      public long getCompanyId() {
31          return _companyId;
32      }
33  
34      public long getGroupId() {
35          return _groupId;
36      }
37  
38      public String getInPassword() {
39          return _inPassword;
40      }
41  
42      public String getInProtocol() {
43          return _inProtocol;
44      }
45  
46      public String getInServerName() {
47          return _inServerName;
48      }
49  
50      public int getInServerPort() {
51          return _inServerPort;
52      }
53  
54      public String getInUserName() {
55          return _inUserName;
56      }
57  
58      public boolean isInUseSSL() {
59          return _inUseSSL;
60      }
61  
62      public long getUserId() {
63          return _userId;
64      }
65  
66      public void setCategoryId(long id) {
67          _categoryId = id;
68      }
69  
70      public void setCompanyId(long id) {
71          _companyId = id;
72      }
73  
74      public void setGroupId(long id) {
75          _groupId = id;
76      }
77  
78      public void setInPassword(String inPassword) {
79          _inPassword = inPassword;
80      }
81  
82      public void setInProtocol(String inProtocol) {
83          _inProtocol = inProtocol;
84      }
85  
86      public void setInServerName(String inServerName) {
87          _inServerName = inServerName;
88      }
89  
90      public void setInServerPort(int inServerPort) {
91          _inServerPort = inServerPort;
92      }
93  
94      public void setInUserName(String inUserName) {
95          _inUserName = inUserName;
96      }
97  
98      public void setInUseSSL(boolean inUseSSL) {
99          _inUseSSL = inUseSSL;
100     }
101 
102     public void setUserId(long id) {
103         _userId = id;
104     }
105 
106     private long _categoryId;
107     private long _companyId;
108     private long _groupId;
109     private String _inPassword;
110     private String _inProtocol;
111     private String _inServerName;
112     private int _inServerPort;
113     private String _inUserName;
114     private boolean _inUseSSL;
115     private long _userId;
116 
117 }