* Added the COMMAND enum to the Operation class
@ -21,6 +21,7 @@ public class Feature {
private int id;
private String name;
private String description;
private String deviceType;
private List<MetadataEntry> metadataEntries;
@ -56,6 +57,14 @@ public class Feature {
this.deviceType = deviceType;
}
public String getDescription() {
return description;
public void setDescription(String description) {
this.description = description;
public static class MetadataEntry {
@ -24,7 +24,7 @@ import java.util.Properties;
public class Operation {
public enum Type {
CONFIG, MESSAGE, INFO
CONFIG, MESSAGE, INFO, COMMAND
private String code;