Examples of ProfileFeed


Examples of com.google.gdata.data.health.ProfileFeed

   */
  public void showProfileForId(String profileId)
      throws IOException, ServiceException {

    out.println("CCR records for profile id: " + profileId);
    ProfileFeed feed = service.getFeed(
        new URL(PROFILE_FEED_PATH + "ui/" + profileId), ProfileFeed.class);
    for (ProfileEntry entry : feed.getEntries()) {
      out.println(entry.getContinuityOfCareRecord().getXmlBlob().getBlob());
    }

  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.