Added: 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/com/twitter/TwitterConfiguration.json
==============================================================================
--- 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/com/twitter/TwitterConfiguration.json
 (added)
+++ 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/com/twitter/TwitterConfiguration.json
 Mon Mar 28 05:35:22 2016
@@ -0,0 +1,77 @@
+{
+    "$schema": "http://json-schema.org/draft-03/schema";,
+    "$license": [
+        "http://www.apache.org/licenses/LICENSE-2.0";
+    ],
+    "id": "#",
+    "type": "object",
+    "javaType" : "org.apache.streams.twitter.TwitterConfiguration",
+    "javaInterfaces": ["java.io.Serializable"],
+    "properties": {
+        "protocol": {
+            "type": "string",
+            "description": "The protocol",
+            "default": "https"
+        },
+        "host": {
+            "type": "string",
+            "description": "The host",
+            "default": "api.twitter.com"
+        },
+        "port": {
+            "type": "integer",
+            "description": "The port",
+            "default": 443
+        },
+        "version": {
+            "type": "string",
+            "description": "The version",
+            "default": "1.1"
+        },
+        "endpoint": {
+            "type": "string",
+            "description": "The endpoint"
+        },
+        "jsonStoreEnabled": {
+            "default" : true,
+            "type": "string"
+        },
+        "oauth": {
+            "type": "object",
+            "dynamic": "true",
+            "javaType" : 
"org.apache.streams.twitter.TwitterOAuthConfiguration",
+            "javaInterfaces": ["java.io.Serializable"],
+            "properties": {
+                "appName": {
+                    "type": "string"
+                },
+                "consumerKey": {
+                    "type": "string"
+                },
+                "consumerSecret": {
+                    "type": "string"
+                },
+                "accessToken": {
+                    "type": "string"
+                },
+                "accessTokenSecret": {
+                    "type": "string"
+                }
+            }
+        },
+        "basicauth": {
+            "type": "object",
+            "dynamic": "true",
+            "javaType" : 
"org.apache.streams.twitter.TwitterBasicAuthConfiguration",
+            "javaInterfaces": ["java.io.Serializable"],
+            "properties": {
+                "username": {
+                    "type": "string"
+                },
+                "password": {
+                    "type": "string"
+                }
+            }
+        }
+   }
+}
\ No newline at end of file

Added: 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/com/twitter/TwitterFollowingConfiguration.json
==============================================================================
--- 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/com/twitter/TwitterFollowingConfiguration.json
 (added)
+++ 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/com/twitter/TwitterFollowingConfiguration.json
 Mon Mar 28 05:35:22 2016
@@ -0,0 +1,18 @@
+{
+    "$schema": "http://json-schema.org/draft-03/schema";,
+    "$license": [
+        "http://www.apache.org/licenses/LICENSE-2.0";
+    ],
+    "id": "#",
+    "type": "object",
+    "javaType" : "org.apache.streams.twitter.TwitterFollowingConfiguration",
+    "extends": {"$ref":"TwitterUserInformationConfiguration.json"},
+    "javaInterfaces": ["java.io.Serializable"],
+    "properties": {
+        "ids_only": {
+            "type": "boolean",
+            "description": "Whether to collect ids only, or full profiles",
+            "value": "true"
+        }
+    }
+}
\ No newline at end of file

Added: 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/com/twitter/TwitterStreamConfiguration.json
==============================================================================
--- 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/com/twitter/TwitterStreamConfiguration.json
 (added)
+++ 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/com/twitter/TwitterStreamConfiguration.json
 Mon Mar 28 05:35:22 2016
@@ -0,0 +1,45 @@
+{
+    "$schema": "http://json-schema.org/draft-03/schema";,
+    "$license": [
+        "http://www.apache.org/licenses/LICENSE-2.0";
+    ],
+    "id": "#",
+    "type": "object",
+    "javaType" : "org.apache.streams.twitter.TwitterStreamConfiguration",
+    "extends": {"$ref":"TwitterConfiguration.json"},
+    "javaInterfaces": ["java.io.Serializable"],
+    "properties": {
+        "includeEntities": {
+            "type": "string"
+        },
+        "truncated": {
+            "type": "boolean"
+        },
+        "filter-level": {
+            "type": "string",
+            "description": "Setting this parameter to one of none, low, or 
medium will set the minimum value of the filter_level Tweet attribute required 
to be included in the stream"
+        },
+        "with": {
+            "type": "string",
+            "description": "Typically following or user"
+        },
+        "replies": {
+            "type": "string",
+            "description": "Set to all, to see all @replies"
+        },
+        "follow": {
+            "type": "array",
+            "description": "A list of user IDs, indicating the users whose 
Tweets should be delivered on the stream",
+            "items": {
+                "type": "integer"
+            }
+        },
+        "track": {
+            "type": "array",
+            "description": "A list of phrases which will be used to determine 
what Tweets will be delivered on the stream",
+            "items": {
+                "type": "string"
+            }
+        }
+    }
+}
\ No newline at end of file

Added: 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/com/twitter/TwitterUserInformationConfiguration.json
==============================================================================
--- 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/com/twitter/TwitterUserInformationConfiguration.json
 (added)
+++ 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/com/twitter/TwitterUserInformationConfiguration.json
 Mon Mar 28 05:35:22 2016
@@ -0,0 +1,25 @@
+{
+    "$schema": "http://json-schema.org/draft-03/schema";,
+    "$license": [
+        "http://www.apache.org/licenses/LICENSE-2.0";
+    ],
+    "id": "#",
+    "type": "object",
+    "javaType" : 
"org.apache.streams.twitter.TwitterUserInformationConfiguration",
+    "extends": {"$ref":"TwitterConfiguration.json"},
+    "javaInterfaces": ["java.io.Serializable"],
+    "properties": {
+        "info": {
+            "type": "array",
+            "description": "A list of user IDs, indicating the users whose 
Tweets should be delivered on the stream",
+            "items": {
+                "type": "string"
+            }
+        },
+        "max_items": {
+            "type": "integer",
+            "description": "Max items per user to collect",
+            "default": 5000
+        }
+    }
+}
\ No newline at end of file

Added: 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/com/twitter/User.json
==============================================================================
--- 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/com/twitter/User.json
 (added)
+++ 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/com/twitter/User.json
 Mon Mar 28 05:35:22 2016
@@ -0,0 +1,129 @@
+{
+    "type": "object",
+    "$schema": "http://json-schema.org/draft-03/schema";,
+    "$license": [
+      "http://www.apache.org/licenses/LICENSE-2.0";
+    ],
+    "id": "#",
+    "javaType" : "org.apache.streams.twitter.pojo.User",
+    "javaInterfaces": ["java.io.Serializable"],
+    "properties": {
+        "location": {
+            "type": "string"
+        },
+        "default_profile": {
+            "type": "boolean"
+        },
+        "statuses_count": {
+            "ignore_malformed": false,
+            "type": "integer"
+        },
+        "profile_background_tile": {
+            "type": "boolean"
+        },
+        "lang": {
+            "type": "string"
+        },
+        "profile_link_color": {
+            "type": "string"
+        },
+        "id": {
+            "ignore_malformed": false,
+            "type": "integer"
+        },
+        "protected": {
+            "type": "boolean"
+        },
+        "favourites_count": {
+            "ignore_malformed": false,
+            "type": "integer"
+        },
+        "profile_text_color": {
+            "type": "string"
+        },
+        "verified": {
+            "type": "boolean"
+        },
+        "description": {
+            "type": "string"
+        },
+        "contributors_enabled": {
+            "type": "boolean"
+        },
+        "name": {
+            "type": "string"
+        },
+        "profile_sidebar_border_color": {
+            "type": "string"
+        },
+        "profile_background_color": {
+            "type": "string"
+        },
+        "created_at": {
+            "type": "string",
+            "format": "date-time"
+        },
+        "default_profile_image": {
+            "type": "boolean"
+        },
+        "followers_count": {
+            "ignore_malformed": false,
+            "type": "integer"
+        },
+        "geo_enabled": {
+            "type": "boolean"
+        },
+        "profile_image_url_https": {
+            "type": "string"
+        },
+        "profile_background_image_url": {
+            "type": "string"
+        },
+        "profile_background_image_url_https": {
+            "type": "string"
+        },
+        "follow_request_sent": {
+            "type": "boolean"
+        },
+        "url": {
+            "type": "string"
+        },
+        "utc_offset": {
+            "ignore_malformed": false,
+            "type": "integer"
+        },
+        "time_zone": {
+            "type": "string"
+        },
+        "profile_use_background_image": {
+            "type": "boolean"
+        },
+        "friends_count": {
+            "ignore_malformed": false,
+            "type": "integer"
+        },
+        "profile_sidebar_fill_color": {
+            "type": "string"
+        },
+        "screen_name": {
+            "type": "string"
+        },
+        "id_str": {
+            "type": "string"
+        },
+        "profile_image_url": {
+            "type": "string"
+        },
+        "is_translator": {
+            "type": "boolean"
+        },
+        "listed_count": {
+            "ignore_malformed": false,
+            "type": "integer"
+        },
+        "status": {
+            "$ref": "tweet.json"
+        }
+    }
+
+}
\ No newline at end of file

Added: 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/com/twitter/UserstreamEvent.json
==============================================================================
--- 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/com/twitter/UserstreamEvent.json
 (added)
+++ 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/com/twitter/UserstreamEvent.json
 Mon Mar 28 05:35:22 2016
@@ -0,0 +1,52 @@
+{
+    "$schema": "http://json-schema.org/draft-03/schema";,
+    "$license": [
+        "http://www.apache.org/licenses/LICENSE-2.0";
+    ],
+    "id": "#",
+    "type": "object",
+    "javaType" : "org.apache.streams.twitter.pojo.UserstreamEvent",
+    "javaInterfaces": ["java.io.Serializable"],
+    "description": "",
+    "properties": {
+        "created_at": {
+            "type": "string",
+            "format" : "date-time"
+        },
+        "event_type": {
+            "type": "string",
+            "enum" : [
+                "access_revoked",
+                "block",
+                "unblock",
+                "favorite",
+                "unfavorite",
+                "follow",
+                "unfollow",
+                "list_created",
+                "list_destroyed",
+                "list_updated",
+                "list_member_added",
+                "list_member_removed",
+                "list_user_subscribed",
+                "list_user_unsubscribed",
+                "user_update"
+            ]
+        },
+        "source": {
+            "type": "string",
+            "items": {
+                "type": "integer"
+            }
+        },
+        "target": {
+            "type": "string",
+            "items": {
+                "type": "integer"
+            }
+        },
+        "target_object": {
+            "type": "object"
+        }
+    }
+}
\ No newline at end of file

Added: 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/com/twitter/tweet.json
==============================================================================
--- 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/com/twitter/tweet.json
 (added)
+++ 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/com/twitter/tweet.json
 Mon Mar 28 05:35:22 2016
@@ -0,0 +1,181 @@
+{
+    "type": "object",
+    "$schema": "http://json-schema.org/draft-03/schema";,
+    "$license": [
+      "http://www.apache.org/licenses/LICENSE-2.0";
+    ],
+    "id": "#",
+    "javaType" : "org.apache.streams.twitter.pojo.Tweet",
+    "javaInterfaces": ["java.io.Serializable"],
+    "properties": {
+        "text": {
+            "type": "string"
+        },
+        "retweeted": {
+            "type": "boolean"
+        },
+        "in_reply_to_screen_name": {
+            "type": "string"
+        },
+        "truncated": {
+            "type": "boolean"
+        },
+        "filter_level": {
+            "type": "string"
+        },
+        "contributors": {
+            "ignore_malformed": false,
+            "type": "array",
+            "items": [{
+                "type" : "number"
+            }]
+        },
+        "coordinates": {
+            "type": "object",
+            "javaType" : "org.apache.streams.twitter.pojo.Coordinates",
+            "javaInterfaces": ["java.io.Serializable"],
+            "items": {
+                "properties": {
+                    "type": {
+                        "type": "string"
+                    },
+                    "coordinates": {
+                        "type": "array",
+                        "items": [
+                            {
+                                "type": "integer"
+                            }
+                        ]
+                    }
+                }
+            }
+        },
+        "entities": {
+            "type": "object",
+            "dynamic": "true",
+            "javaType" : "org.apache.streams.twitter.pojo.Entities",
+            "javaInterfaces": ["java.io.Serializable"],
+            "properties": {
+                "user_mentions": {
+                    "type": "array",
+                    "items": {
+                        "type": "object",
+                        "javaType" : 
"org.apache.streams.twitter.pojo.UserMentions",
+                        "javaInterfaces": ["java.io.Serializable"],
+                        "properties": {
+                            "id": {
+                                "ignore_malformed": false,
+                                "type": "integer"
+                            },
+                            "name": {
+                                "type": "string"
+                            },
+                            "indices": {
+                                "type": "array",
+                                "items": [{
+                                    "type" : "integer"
+                                }]
+                            },
+                            "screen_name": {
+                                "type": "string"
+                            },
+                            "id_str": {
+                                "type": "string"
+                            }
+                        }
+                    }
+                },
+                "hashtags": {
+                    "type": "array",
+                    "items": {
+                         "type": "object",
+                         "javaType": "org.apache.streams.twitter.pojo.Hashtag",
+                         "javaInterfaces": ["java.io.Serializable"],
+                         "properties": {
+                             "text": {
+                                 "type": "string"
+                             },
+                             "indices": {
+                                 "type": "array",
+                                 "items": [{
+                                         "type": "integer"
+                                 }]
+                             }
+                          }
+                    }
+                },
+                "urls": {
+                    "type": "array",
+                    "items": {
+                        "type": "object",
+                        "javaType": "org.apache.streams.twitter.Url",
+                        "javaInterfaces": ["java.io.Serializable"],
+                        "properties": {
+                            "expanded_url": {
+                                "type": "string"
+                            },
+                            "indices": {
+                                "type": "array",
+                                "items": [
+                                    {
+                                    "type" : "integer"
+                                    }
+                                ]
+                            },
+                            "display_url": {
+                                "type": "string"
+                            },
+                            "url": {
+                                "type": "string"
+                            }
+                        }
+                    }
+                }
+            }
+        },
+        "in_reply_to_status_id_str": {
+            "type": "string"
+        },
+        "id": {
+            "ignore_malformed": false,
+            "type": "integer"
+        },
+        "in_reply_to_user_id_str": {
+            "type": "string"
+        },
+        "source": {
+            "type": "string"
+        },
+        "lang": {
+            "type": "string"
+        },
+        "favorited": {
+            "type": "boolean"
+        },
+        "possibly_sensitive": {
+            "type": "boolean"
+        },
+        "in_reply_to_status_id": {
+            "ignore_malformed": false,
+            "type": "integer"
+        },
+        "created_at": {
+            "type" : "string",
+            "format" : "date-time"
+        },
+        "in_reply_to_user_id": {
+            "ignore_malformed": false,
+            "type": "integer"
+        },
+        "retweet_count": {
+            "ignore_malformed": false,
+            "type": "integer"
+        },
+        "id_str": {
+            "type": "string"
+        },
+        "user": {
+            "$ref": "User.json"
+        }
+    }
+}
\ No newline at end of file

Added: 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/css/apache-maven-fluido-1.3.0.min.css
==============================================================================
--- 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/css/apache-maven-fluido-1.3.0.min.css
 (added)
+++ 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/css/apache-maven-fluido-1.3.0.min.css
 Mon Mar 28 05:35:22 2016
@@ -0,0 +1,9 @@
+/*!
+ * Bootstrap v2.1.0
+ *
+ * Copyright 2012 Twitter, Inc
+ * Licensed under the Apache License v2.0
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Designed and built with all the love in the world @twitter by @mdo and @fat.

[... 3 lines stripped ...]
Added: 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/css/print.css
==============================================================================
--- 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/css/print.css
 (added)
+++ 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/css/print.css
 Mon Mar 28 05:35:22 2016
@@ -0,0 +1,23 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+/* $Id: print.css 1201871 2011-11-14 20:18:24Z simonetripodi $ */
+
+#banner, #footer, #leftcol, #breadcrumbs, .docs #toc, .docs .courtesylinks, 
#leftColumn, #navColumn {display: none !important;}
+#bodyColumn, body.docs div.docs {margin: 0 !important;border: none !important}

Added: 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/css/site.css
==============================================================================
--- 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/css/site.css
 (added)
+++ 
websites/production/streams/content/site/0.3-incubating-SNAPSHOT/streams-project/streams-contrib/streams-provider-twitter/css/site.css
 Mon Mar 28 05:35:22 2016
@@ -0,0 +1 @@
+/* You can override this file with your own styles */
\ No newline at end of file


Reply via email to