WebSphere MQ Messenger Java GUI  1.0
GNU Free Software License
 All Classes Namespaces Files Functions Variables
PropertiesClass.java
Go to the documentation of this file.
1  /* Websphere MQ Client - Connects and sends or receives messages from WebSphere (IBM) Application Server
2  * WebSphere is Copyright IBM
3  Copyright (C) 2012 David Welford-Costelloe (http://www.welford-costelloe.org)
4 
5  This program is free software: you can redistribute it and/or modify
6  it under the terms of the GNU General Public License as published by
7  the Free Software Foundation, either version 3 of the License, or
8  (at your option) any later version.
9 
10  This program is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  GNU General Public License for more details.
14 
15  You should have received a copy of the GNU General Public License
16  along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18 package com.ca.on.burlington.base.classes;
19 
20 import java.io.Serializable;
21 
26 public class PropertiesClass implements Serializable {
27 
31  private static final long serialVersionUID = 1L;
32  private String hostName = null;
33  private String channelName = null;
34  private String requestQManager = null;
35  private String requestQueueName = null;
36  private String replyQManager = null;
37  private String replyQueueName = null;
38  private int portNum = 0;
39 
43  public String getHostName() {
44  return hostName;
45  }
46 
51  public void setHostName(String hostName) {
52  this.hostName = hostName;
53  }
54 
58  public String getChannelName() {
59  return channelName;
60  }
61 
66  public void setChannelName(String channelName) {
67  this.channelName = channelName;
68  }
69 
73  public String getRequestQManager() {
74  return requestQManager;
75  }
76 
81  public void setRequestQManager(String requestQManager) {
82  this.requestQManager = requestQManager;
83  }
84 
88  public String getRequestQueueName() {
89  return requestQueueName;
90  }
91 
96  public void setRequestQueueName(String requestQueueName) {
97  this.requestQueueName = requestQueueName;
98  }
99 
103  public String getReplyQManager() {
104  return replyQManager;
105  }
106 
111  public void setReplyQManager(String replyQManager) {
112  this.replyQManager = replyQManager;
113  }
114 
118  public String getReplyQueueName() {
119  return replyQueueName;
120  }
121 
126  public void setReplyQueueName(String replyQueueName) {
127  this.replyQueueName = replyQueueName;
128  }
129 
133  public int getPortNum() {
134  return portNum;
135  }
136 
141  public void setPortNum(int portNum) {
142  this.portNum = portNum;
143  }
144 
145 }

Check Out David's Web Site http://www.welford-costelloe.org

GNU Free Software: http://www.gnu.org/philosophy/free-sw.html