ResponseBuilder response = request.evaluatePreconditions(eTag);
if (response != null) {
return response.build();
}
PostCollectionRepresentation representation = new PostCollectionRepresentation(posts, username);
return Response.ok(representation).tag(eTag).build();
}