Parses one or more data points for storage @return an array of data points to process for storage @throws BadRequestException if the plugin has not implemented this method
()
| 171 | * @throws BadRequestException if the plugin has not implemented this method |
| 172 | */ |
| 173 | public List<IncomingDataPoint> parsePutV1() { |
| 174 | throw new BadRequestException(HttpResponseStatus.NOT_IMPLEMENTED, |
| 175 | "The requested API endpoint has not been implemented", |
| 176 | this.getClass().getCanonicalName() + |
| 177 | " has not implemented parsePutV1"); |
| 178 | } |
| 179 | |
| 180 | /** |
| 181 | * Parses one or more data points for storage |