Home | History | Annotate | Download | only in afe

Lines Matching defs:host

3 import autotest.afe.models.Host;
33 Host host = Host.fromJsonObject(row);
34 processHost(host);
35 hosts.add(host);
40 protected void processHost(JSONObject host) {
41 host.put(LOCKED_TEXT, AfeUtils.getLockedText(host));
43 JSONString jsonPlatform = host.get("platform").isString();
48 JSONArray labels = host.get("labels").isArray();
60 host.put(OTHER_LABELS, new JSONString(labelString.toString()));
63 new JSONArrayList<JSONString>(host.get("acls").isArray());
65 host.put(HOST_ACLS, new JSONString(aclString));