Added initial prototype implementation of Android Multi-PHY Easy Setup
[platform/upstream/iotivity.git] / service / easy-setup / sdk / android / EasySetupCore / src / org / iotivity / service / easysetup / mediator / EnrolleeInfo.java
1 /******************************************************************
2  *
3  * Copyright 2015 Samsung Electronics All Rights Reserved.
4  *
5  *
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  ******************************************************************/
20
21 package org.iotivity.service.easysetup.mediator;
22
23 public class EnrolleeInfo {
24
25     private String  IpAddr;
26     private String  HWAddr;
27     private String  Device;
28     private boolean isReachable;
29
30     public String getIpAddr() {
31         return IpAddr;
32     }
33
34     public void setIpAddr(String ipAddr) {
35         IpAddr = ipAddr;
36     }
37
38     public String getHWAddr() {
39         return HWAddr;
40     }
41
42     public void setHWAddr(String hWAddr) {
43         HWAddr = hWAddr;
44     }
45
46     public String getDevice() {
47         return Device;
48     }
49
50     public void setDevice(String device) {
51         Device = device;
52     }
53
54     public boolean isReachable() {
55         return isReachable;
56     }
57
58     public void setReachable(boolean isReachable) {
59         this.isReachable = isReachable;
60     }
61
62 }