390011d4d9b632be9a472e5009d40f88f2407eb2
[utils] / system / general / src / test / java / org / wamblee / system / adapters / X7.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 public class X7 {
19     
20     private String host; 
21     private Integer port;
22     private Boolean flag; 
23     
24         public X7(Boolean aBoolean) {
25            flag = aBoolean; 
26         }
27         
28         public Boolean getBoolean() {
29         return flag;
30     }
31
32         public Integer getPort() {
33         return port;
34     }
35         
36         public void setPort(Integer aPort) {
37         port = aPort;
38     }
39         
40         public String getHost() {
41         return host;
42     }
43         
44         public void setHost(String aHost) {
45         host = aHost;
46     }
47 }