@Context LinkBuilders linkProcessor,
@Context UriInfo uriInfo) throws IOException {
SyndFeed synd = new SyndFeed();
synd.setId("urn:com:hp:qadefects:defects");
synd.setTitle(new SyndText("Defects"));
synd.addAuthor(new SyndPerson("admin"));
synd.setUpdated(new Date());
// set the entries
for (DefectBean defect : defects) {
DefectAsset defectAsset = new DefectAsset(defect, true);