2 * ***************************************************************
4 * Copyright 2015 Samsung Electronics All Rights Reserved.
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
20 * ****************************************************************
22 package org.iotivity.service.easysetup.core;
24 public class EnrolleeOnBoardingInfo {
26 private String IpAddr;
27 private String HWAddr;
28 private String Device;
29 private boolean isReachable;
30 private boolean isAdditionNotified;
31 private boolean isRemovalNotified;
33 public EnrolleeOnBoardingInfo(String ipAddr, String hWAddr, String device,
34 boolean isReachable, boolean isRemovalNotified,
35 boolean isAdditionNotified) {
39 this.isReachable = isReachable;
40 this.isRemovalNotified = isRemovalNotified;
41 this.isAdditionNotified = isAdditionNotified;
44 public String getIpAddr() {
48 public void setIpAddr(String ipAddr) {
52 public String getHWAddr() {
56 public void setHWAddr(String hWAddr) {
60 public String getDevice() {
64 public void setDevice(String device) {
68 public boolean isReachable() {
72 public void setReachable(boolean isReachable) {
73 this.isReachable = isReachable;
76 public boolean isRemovalNotified() {
77 return isRemovalNotified;
80 public void setRemovalNotified(boolean isRemovalNotified) {
81 this.isRemovalNotified = isRemovalNotified;
84 public boolean isAdditionNotified() {
85 return isAdditionNotified;
88 public void setAdditionNotified(boolean isAdditionNotified) {
89 this.isAdditionNotified = isAdditionNotified;