*/
@Override
public Representation get(Variant variant) throws ResourceException {
final String iri = getRequestIRI();
final String collTitle = _collInfo.getTitle();
DefaultCollectionFeed feed = new DefaultCollectionFeed(iri,
getConfiguration().getCollectionFeedTitle(collTitle),
_collInfo.getUpdated(), _collInfo.getDependencies());
applyAuthorInfo(feed);
feed.setSnapshotsEntry(new DefaultLinkAwareEntry(linkToSnapshots(),
getConfiguration().getSnapshotsEntryTitle(collTitle),
_snapshotModification));
feed.setFragmentsEntry(new DefaultLinkAwareEntry(linkToFragments(),
getConfiguration().getFragmentsEntryTitle(collTitle),
_fragmentModification));
return new WritableAwareRepresentation(variant.getMediaType(),
new CollectionFeedWriter(feed, makeFeedHandler(variant)),
_collInfo.getUpdated());