We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e919979 commit 87af6dbCopy full SHA for 87af6db
java/src/org/labkey/remoteapi/domain/PropertyDescriptor.java
@@ -65,6 +65,13 @@ public PropertyDescriptor(JSONObject json)
65
66
_propertyURI = (String)json.get("propertyURI");
67
_rangeURI = (String)json.get("rangeURI");
68
+
69
+ if (json.get("lookupSchema") != null)
70
+ _lookupSchema = (String)json.get("lookupSchema");
71
+ if (json.get("lookupQuery") != null)
72
+ _lookupQuery = (String)json.get("lookupQuery");
73
+ if (json.get("lookupContainer") != null)
74
+ _lookupContainer = (String)json.get("lookupContainer");
75
}
76
77
public JSONObject toJSONObject()
0 commit comments