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/16 01:56:28 UTC

[10/10] incubator-streams git commit: improved configuration scheme

improved configuration scheme


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

Branch: refs/heads/STREAMS-68,218
Commit: ce2a794dc9c79a28d3650377c58942fb95d82eb2
Parents: df648a8
Author: Steve Blackmon <sb...@w2odigital.com>
Authored: Sat Nov 15 18:56:05 2014 -0600
Committer: Steve Blackmon <sb...@w2odigital.com>
Committed: Sat Nov 15 18:56:05 2014 -0600

----------------------------------------------------------------------
 ...ActivityConverterProcessorConfiguration.json | 23 ++++++++++++++++++++
 1 file changed, 23 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/ce2a794d/streams-components/streams-converters/src/main/jsonschema/org/apache/streams/components/http/ActivityConverterProcessorConfiguration.json
----------------------------------------------------------------------
diff --git a/streams-components/streams-converters/src/main/jsonschema/org/apache/streams/components/http/ActivityConverterProcessorConfiguration.json b/streams-components/streams-converters/src/main/jsonschema/org/apache/streams/components/http/ActivityConverterProcessorConfiguration.json
new file mode 100644
index 0000000..ab173b4
--- /dev/null
+++ b/streams-components/streams-converters/src/main/jsonschema/org/apache/streams/components/http/ActivityConverterProcessorConfiguration.json
@@ -0,0 +1,23 @@
+{
+    "type": "object",
+    "$schema": "http://json-schema.org/draft-03/schema",
+    "id": "#",
+    "javaType" : "org.apache.streams.converter.ActivityConverterProcessorConfiguration",
+    "javaInterfaces": ["java.io.Serializable"],
+    "properties": {
+        "classifiers": {
+            "type": "array",
+            "items": {
+                "type": "object",
+                "javaType": "org.apache.streams.data.DocumentClassifier"
+            }
+        },
+        "resolvers": {
+            "type": "array",
+            "items": {
+                "type": "object",
+                "javaType": "org.apache.streams.data.ActivityConverterResolver"
+            }
+        }
+    }
+}
\ No newline at end of file