Github user lewismc commented on a diff in the pull request:
https://github.com/apache/gora/pull/135#discussion_r222541419
--- Diff:
gora-core/src/main/java/org/apache/gora/persistency/Persistent.java ---
@@ -113,4 +118,13 @@
* @return a new instance of the object
*/
Persistent newInstance();
+
+ /**
+ * Returns the avro's data schema
+ * @return the parsed schema definition
+ */
+ public Schema getSchema();
+
+ public Persistent clone() throws CloneNotSupportedException;
--- End diff --
Can you provide Javadoc for this? It is a primary method in a very
important interface.
---