Package org.waveprotocol.box.profile.gson.ProfileResponseGsonImpl

Examples of org.waveprotocol.box.profile.gson.ProfileResponseGsonImpl.FetchedProfileGsonImpl


    // NOTE: always check with has(...) as the json might not have all required
    // fields set.
    if (jsonObject.has("1")) {
      JsonArray array = jsonObject.get("1").getAsJsonArray();
      for (int i = 0; i < array.size(); i++) {
        FetchedProfileGsonImpl payload = new FetchedProfileGsonImpl();
        GsonUtil.extractJsonObject(payload, array.get(i), gson, raw);
        addProfiles(payload);
      }
    }
  }
View Full Code Here

TOP

Related Classes of org.waveprotocol.box.profile.gson.ProfileResponseGsonImpl.FetchedProfileGsonImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.