xtern commented on a change in pull request #7648: IGNITE-12857 Put custom objects via REST URL: https://github.com/apache/ignite/pull/7648#discussion_r409870188
########## File path: modules/rest-http/src/main/java/org/apache/ignite/internal/processors/rest/protocols/http/jetty/GridJettyObjectMapper.java ########## @@ -264,4 +292,36 @@ private void writeException(Throwable e, JsonGenerator gen) throws IOException { } } }; + + /** Custom serializer for {@link java.sql.Timestamp}. */ + private static final JsonSerializer<Timestamp> IGNITE_TIMESTAMP_SERIALIZER = new JsonSerializer<Timestamp>() { + /** {@inheritDoc} */ Review comment: Thanks, I missed javadocs in similar places, actually. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services