Update item bean class to get documentation link from xml

(cherry picked from commit 6c947962d6)
This commit is contained in:
Kaveesha 2021-05-12 15:00:56 +05:30 committed by Pahansith
parent c23d0026ea
commit bcab5f3bfe

View File

@ -27,6 +27,7 @@ public class Item {
private String label;
private String tooltip;
private String docLink;
private String key;
private String value;
private boolean isRequired;
@ -65,6 +66,16 @@ public class Item {
this.tooltip = tooltip;
}
@XmlElement(name = "DocLink")
public String getDocLink() {
return docLink;
}
public void setDocLink(String docLink) {
this.docLink = docLink;
}
@XmlElement(name = "Key", required = true)
public String getKey() {
return key;