You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ze...@apache.org on 2020/10/20 05:22:12 UTC

[incubator-streampipes] branch STREAMPIPES-234 updated (420c1c3 -> 820b546)

This is an automated email from the ASF dual-hosted git repository.

zehnder pushed a change to branch STREAMPIPES-234
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git.


    from 420c1c3  Add delete functionality for label categories
     new 0ae7c55  Labeling api WIP
     new 3207736  Adapted routing for labeling api and changed category class
     new 820b546  Merge pull request #27 from heymarco/STREAMPIPES-234

The 5603 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../backend/StreamPipesResourceConfig.java         |  1 +
 streampipes-backend/src/main/resources/shiro.ini   |  8 +-
 .../apache/streampipes/model/client/Category.java  |  3 +-
 .../streampipes/model/labeling/Category.java       | 10 +--
 .../apache/streampipes/model/labeling/Label.java   |  4 +
 .../manager/setup/CouchDbInstallationStep.java     | 24 ++++++
 .../org/apache/streampipes/rest/api/ICategory.java | 20 +++++
 .../org/apache/streampipes/rest/api/ILabel.java    | 11 +++
 .../streampipes/rest/impl/CategoryResource.java    | 93 +++++++++++++++++++++
 .../streampipes/rest/impl/LabelResource.java       | 97 ++++++++++++++++++----
 .../streampipes/storage/api/ICategoryStorage.java  | 19 +++++
 .../streampipes/storage/api/ILabelStorage.java     | 11 ++-
 .../streampipes/storage/api/INoSqlStorage.java     |  3 +
 .../storage/couchdb/CouchDbStorageManager.java     |  3 +
 .../storage/couchdb/impl/CategoryStorageImpl.java  | 41 +++++++++
 .../storage/couchdb/impl/LabelStorageImpl.java     | 26 +++++-
 .../streampipes/storage/couchdb/utils/Utils.java   |  6 ++
 17 files changed, 349 insertions(+), 31 deletions(-)
 create mode 100644 streampipes-rest/src/main/java/org/apache/streampipes/rest/api/ICategory.java
 create mode 100644 streampipes-rest/src/main/java/org/apache/streampipes/rest/impl/CategoryResource.java
 create mode 100644 streampipes-storage-api/src/main/java/org/apache/streampipes/storage/api/ICategoryStorage.java
 create mode 100644 streampipes-storage-couchdb/src/main/java/org/apache/streampipes/storage/couchdb/impl/CategoryStorageImpl.java