* @throws UnsupportedMediaTypeException
*/
@GET
public Response getFragments(@Context HttpHeaders headers) throws StorageException, UnsupportedMediaTypeException {
final Response.ResponseBuilder builder = makeResponseBuilder();
final IWritableRepresentation writable =
_feedFactory.createFragmentsFeed(getBaseURI(),
getStorage(), getConfiguration(), _lastModification,
_collInfo, MediaTypeUtils.toAtomicoMediaType(headers.getAcceptableMediaTypes()));
return ResponseUtils.buildStreamingEntity(builder, writable);
}