edit makefile to clear db (need feedback)
labelStack shows empty list (Fixed but need feedback)
added tunnel path in show tunnel command
removed mpls action from aclAdded TTL actions in group, etherType with '0x', Added tunnelInfo in 'show policy', removed |breif, details| from groups
diff --git a/src/main/java/net/onrc/onos/apps/segmentrouting/web/SegmentRouterTunnelInfo.java b/src/main/java/net/onrc/onos/apps/segmentrouting/web/SegmentRouterTunnelInfo.java
index 105983b..3808ef8 100644
--- a/src/main/java/net/onrc/onos/apps/segmentrouting/web/SegmentRouterTunnelInfo.java
+++ b/src/main/java/net/onrc/onos/apps/segmentrouting/web/SegmentRouterTunnelInfo.java
@@ -9,14 +9,17 @@
     private String tunnelId;
     private List<List<String>> labelStack;
     private List<String> dpidGroup;
+    private List<Integer> tunnelPath;
     private String policies;
     
     public SegmentRouterTunnelInfo (String tId,List<List<String>> tunnelRoutes,
-            List<String> dpidsWithGroup,String policiesId){
+            List<String> dpidsWithGroup,List<Integer> path, String policiesId){
         this.tunnelId = tId;
         this.labelStack = tunnelRoutes;
         this.dpidGroup = dpidsWithGroup;
+        this.tunnelPath = path;
         this.policies = policiesId;
+        
     }
     public String getTunnelId (){
         return this.tunnelId;
@@ -27,6 +30,9 @@
     public List<String> getDpidGroup (){
         return this.dpidGroup;
     }
+    public List<Integer> getTunnelPath (){
+        return this.tunnelPath;
+    }
     public String getPolicies (){
         return this.policies;
     }