c76c8d7ce9b8a1955407af054d08358f8fd471a2
[utils] / system / general / src / test / java / org / wamblee / system / adapters / X6.java
1 /*
2  * Copyright 2008 the original author or authors.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.wamblee.system.adapters;
17
18 /**
19  * DOCUMENT ME!
20  *
21  * @author $author$
22  * @version $Revision$
23   */
24 public class X6 {
25     /**
26      * DOCUMENT ME!
27      */
28     private String host;
29
30     /**
31      * DOCUMENT ME!
32      */
33     private Integer port;
34
35     /**
36      * Creates a new X6 object.
37      */
38     public X6() {
39     }
40
41     /**
42      * DOCUMENT ME!
43      *
44      * @return DOCUMENT ME!
45      */
46     public Integer getPort() {
47         return port;
48     }
49
50     /**
51      * DOCUMENT ME!
52      *
53      * @param aPort DOCUMENT ME!
54      */
55     public void setPort(Integer aPort) {
56         port = aPort;
57     }
58
59     /**
60      * DOCUMENT ME!
61      *
62      * @return DOCUMENT ME!
63      */
64     public String getHost() {
65         return host;
66     }
67
68     /**
69      * DOCUMENT ME!
70      *
71      * @param aHost DOCUMENT ME!
72      */
73     public void setHost(String aHost) {
74         host = aHost;
75     }
76 }