blob: 6d7faa8b7e4bbe4d23779becdcad2ab5b79090e9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014, 2016 Orange.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*******************************************************************************/
package org.eclipse.om2m.sdt.home.smarterkettle.communication;
public class SmarterKettleStatusDescriptor {
private int code;
private String description;
public SmarterKettleStatusDescriptor(int code, String desc){
this.code = code;
this.description = desc;
}
public int getCode() {
return code;
}
public void setCode(int code) {
this.code = code;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}