private Response notificationLogResponse(
NotificationLog aNotificationLog,
UriInfo aUriInfo) {
NotificationLogRepresentation log =
new NotificationLogRepresentation(aNotificationLog);
log.setLinkSelf(this.selfLink(aNotificationLog, aUriInfo));
log.setLinkNext(this.nextLink(aNotificationLog, aUriInfo));
log.setLinkPrevious(this.previousLink(aNotificationLog, aUriInfo));
String serializedLog = ObjectSerializer.instance().serialize(log);
Response response =
Response