Package com.google.gdata.data.health

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

Related Classes of com.google.gdata.data.health.ProfileFeed

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.