Format an annotation object @param note The annotation object to format @return A ChannelBuffer object to pass on to the caller @throws BadRequestException if the plugin has not implemented this method
(final Annotation note)
| 670 | * @throws BadRequestException if the plugin has not implemented this method |
| 671 | */ |
| 672 | public ChannelBuffer formatAnnotationV1(final Annotation note) { |
| 673 | throw new BadRequestException(HttpResponseStatus.NOT_IMPLEMENTED, |
| 674 | "The requested API endpoint has not been implemented", |
| 675 | this.getClass().getCanonicalName() + |
| 676 | " has not implemented formatAnnotationV1"); |
| 677 | } |
| 678 | |
| 679 | /** |
| 680 | * Format a list of annotation objects |
no outgoing calls
no test coverage detected