From b74ededa7c928d4fe5ff7f71ce328e253558f27f Mon Sep 17 00:00:00 2001 From: Dinithi Date: Fri, 6 Feb 2015 11:32:17 +0530 Subject: [PATCH] Adding the command for update network partition --- .../main/java/org/apache/stratos/cli/StratosApplication.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/StratosApplication.java b/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/StratosApplication.java index 91b0ee390c..d25e335429 100644 --- a/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/StratosApplication.java +++ b/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/StratosApplication.java @@ -213,6 +213,9 @@ private void createCommands() { command = new ListNetworkPartitionCommand(); commands.put(command.getName(), command); + command = new UpdateNetworkPartitionCommand(); + commands.put(command.getName(), command); + if (logger.isDebugEnabled()) { logger.debug("Created {} commands for the application. {}", commands.size(), commands.keySet()); }