Home | History | Annotate | Download | only in models

Lines Matching defs:host

7 public class Host extends JSONObject {
8 public static Host fromJsonObject(JSONObject object) {
10 Host host = new Host();
11 Utils.updateObject(host, object);
12 return host;
17 if (!(other instanceof Host)) {
21 Host otherHost = (Host) other;