You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streams.apache.org by sb...@apache.org on 2014/11/23 21:12:08 UTC

[23/28] incubator-streams git commit: GraphWriterConfiguration note: STREAMS-221 must merge first

GraphWriterConfiguration
note: STREAMS-221 must merge first


Project: http://git-wip-us.apache.org/repos/asf/incubator-streams/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams/commit/b4a0fd7b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams/tree/b4a0fd7b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams/diff/b4a0fd7b

Branch: refs/heads/master
Commit: b4a0fd7bcff79aee2be545db02d0642f2e8abe34
Parents: d471f34
Author: Steve Blackmon <sb...@w2odigital.com>
Authored: Sun Nov 23 13:29:55 2014 -0600
Committer: Steve Blackmon <sb...@w2odigital.com>
Committed: Sun Nov 23 13:29:55 2014 -0600

----------------------------------------------------------------------
 .../streams/graph/GraphWriterConfiguration.json   | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/b4a0fd7b/streams-contrib/streams-persist-graph/src/main/jsonschema/org/apache/streams/graph/GraphWriterConfiguration.json
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-persist-graph/src/main/jsonschema/org/apache/streams/graph/GraphWriterConfiguration.json b/streams-contrib/streams-persist-graph/src/main/jsonschema/org/apache/streams/graph/GraphWriterConfiguration.json
new file mode 100644
index 0000000..918c66b
--- /dev/null
+++ b/streams-contrib/streams-persist-graph/src/main/jsonschema/org/apache/streams/graph/GraphWriterConfiguration.json
@@ -0,0 +1,18 @@
+{
+    "type": "object",
+    "$schema": "http://json-schema.org/draft-03/schema",
+    "id": "#",
+    "javaType" : "org.apache.streams.graph.GraphWriterConfiguration",
+    "extends" : {"$ref":"GraphConfiguration.json"},
+    "javaInterfaces": ["java.io.Serializable"],
+    "properties": {
+        "vertices": {
+            "type": "object",
+            "javaType": "org.apache.streams.graph.GraphVertexWriterConfiguration"
+        },
+        "edges": {
+            "type": "string",
+            "javaType": "org.apache.streams.graph.GraphEdgeWriterConfiguration"
+        }
+    }
+}
\ No newline at end of file