Format a list of annotation objects @param notes The annotation objects to format @return A ChannelBuffer object to pass on to the caller @throws BadRequestException if the plugin has not implemented this method
(final List<Annotation> notes)
| 683 | * @throws BadRequestException if the plugin has not implemented this method |
| 684 | */ |
| 685 | public ChannelBuffer formatAnnotationsV1(final List<Annotation> notes) { |
| 686 | throw new BadRequestException(HttpResponseStatus.NOT_IMPLEMENTED, |
| 687 | "The requested API endpoint has not been implemented", |
| 688 | this.getClass().getCanonicalName() + |
| 689 | " has not implemented formatAnnotationsV1"); |
| 690 | } |
| 691 | |
| 692 | /** |
| 693 | * Format the results of a bulk annotation deletion |
no outgoing calls
no test coverage detected