|
|
@ -21,6 +21,7 @@ public class Feature {
|
|
|
|
|
|
|
|
|
|
|
|
private int id;
|
|
|
|
private int id;
|
|
|
|
private String name;
|
|
|
|
private String name;
|
|
|
|
|
|
|
|
private String description;
|
|
|
|
private String deviceType;
|
|
|
|
private String deviceType;
|
|
|
|
private List<MetadataEntry> metadataEntries;
|
|
|
|
private List<MetadataEntry> metadataEntries;
|
|
|
|
|
|
|
|
|
|
|
@ -56,6 +57,14 @@ public class Feature {
|
|
|
|
this.deviceType = deviceType;
|
|
|
|
this.deviceType = deviceType;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getDescription() {
|
|
|
|
|
|
|
|
return description;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setDescription(String description) {
|
|
|
|
|
|
|
|
this.description = description;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static class MetadataEntry {
|
|
|
|
public static class MetadataEntry {
|
|
|
|
|
|
|
|
|
|
|
|
private int id;
|
|
|
|
private int id;
|
|
|
|