*/
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());
}
}