[AETHER-75] Add command to force snapshot of Raft partitions.

Change-Id: I1e79967e3dcbf353749b6a1e524ce71c763ca588
diff --git a/cli/src/main/java/org/onosproject/cli/net/PartitionsSnapshotCommand.java b/cli/src/main/java/org/onosproject/cli/net/PartitionsSnapshotCommand.java
new file mode 100644
index 0000000..02ecab3
--- /dev/null
+++ b/cli/src/main/java/org/onosproject/cli/net/PartitionsSnapshotCommand.java
@@ -0,0 +1,47 @@
+/*
+ * Copyright 2015-present Open Networking Foundation
+ *
+ * Licensed 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.
+ */
+package org.onosproject.cli.net;
+
+import org.apache.karaf.shell.api.action.Command;
+import org.apache.karaf.shell.api.action.Option;
+import org.apache.karaf.shell.api.action.lifecycle.Service;
+import org.onosproject.cli.AbstractShellCommand;
+import org.onosproject.cluster.PartitionId;
+import org.onosproject.store.primitives.PartitionAdminService;
+
+/**
+ * Command to force a snapshot of the partitions.
+ */
+@Service
+@Command(scope = "onos", name = "snapshot-partitions",
+    description = "Force snapshot partitions")
+public class PartitionsSnapshotCommand extends AbstractShellCommand {
+
+    @Option(name = "-p", aliases = "--partition",
+        description = "The partition to snapshot",
+        required = false, multiValued = false)
+    private Integer partitionId;
+
+    @Override
+    protected void doExecute() {
+        PartitionAdminService partitionAdminService = get(PartitionAdminService.class);
+        if (partitionId != null) {
+            partitionAdminService.snapshot(PartitionId.from(partitionId));
+        } else {
+            partitionAdminService.snapshot();
+        }
+    }
+}