[ONOS-6349] Add CLI for querying mappings from MappingService

Change-Id: I982ed17fc599314b709c0c46fca9e2a00b80da08
diff --git a/apps/mappingmanagement/api/src/main/java/org/onosproject/mapping/MappingService.java b/apps/mappingmanagement/api/src/main/java/org/onosproject/mapping/MappingService.java
old mode 100644
new mode 100755
index cedc84a..df986e3
--- a/apps/mappingmanagement/api/src/main/java/org/onosproject/mapping/MappingService.java
+++ b/apps/mappingmanagement/api/src/main/java/org/onosproject/mapping/MappingService.java
@@ -35,6 +35,15 @@
     int getMappingCount(Type type);
 
     /**
+     * Obtains the collection of mapping entries of all devices.
+     * This will include mapping which may not yet have been applied to device.
+     *
+     * @param type      mapping store type
+     * @return collection of mapping entries
+     */
+    Iterable<MappingEntry> getAllMappingEntries(Type type);
+
+    /**
      * Obtains the collection of mapping entries applied on the specific device.
      * The will include mapping which may not yet have been applied to device.
      *