This is an automated email from the ASF dual-hosted git repository.
shuber pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/unomi.git.
from 2cfef87 Merge pull request #102 from
apache/UNOMI-250-refactor-services-impl
add 2f877b5 UNOMI-249 New shell commands to make plugin development
easier The following shell dev commands have been added: - List events - Search
for events by profile Id and type - Remove a profile - Remove a rule - Remove a
segment - View a segment - Undeploy definitions provided by a plugin - Added
the possibility to deploy all the definitions contained in a plugin with the
deploy-definition command.
add 0f8e769 UNOMI-249 New shell commands to make plugin development
easier Updated documentation for the new commands.
add 9d32116 UNOMI-249 New shell commands to make plugin development
easier Updated documentation for the new commands.
new b6f6fa4 Merge pull request #101 from
apache/UNOMI-249-new-shell-commands
The 1 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:
manual/src/main/asciidoc/shell-commands.adoc | 37 +++-
.../unomi/shell/commands/DeployDefinition.java | 245 +++------------------
.../shell/commands/DeploymentCommandSupport.java | 232 +++++++++++++++++++
.../commands/{SessionList.java => EventList.java} | 55 +++--
.../apache/unomi/shell/commands/EventSearch.java | 99 +++++++++
.../{RuleResetStats.java => ProfileRemove.java} | 16 +-
.../{RuleResetStats.java => RuleRemove.java} | 12 +-
.../{SegmentView.java => SegmentRemove.java} | 28 ++-
.../apache/unomi/shell/commands/SegmentView.java | 2 +-
.../unomi/shell/commands/UndeployDefinition.java | 111 ++++++++++
10 files changed, 571 insertions(+), 266 deletions(-)
create mode 100644
tools/shell-dev-commands/src/main/java/org/apache/unomi/shell/commands/DeploymentCommandSupport.java
copy
tools/shell-dev-commands/src/main/java/org/apache/unomi/shell/commands/{SessionList.java
=> EventList.java} (61%)
create mode 100644
tools/shell-dev-commands/src/main/java/org/apache/unomi/shell/commands/EventSearch.java
copy
tools/shell-dev-commands/src/main/java/org/apache/unomi/shell/commands/{RuleResetStats.java
=> ProfileRemove.java} (69%)
copy
tools/shell-dev-commands/src/main/java/org/apache/unomi/shell/commands/{RuleResetStats.java
=> RuleRemove.java} (74%)
copy
tools/shell-dev-commands/src/main/java/org/apache/unomi/shell/commands/{SegmentView.java
=> SegmentRemove.java} (55%)
create mode 100644
tools/shell-dev-commands/src/main/java/org/apache/unomi/shell/commands/UndeployDefinition.java