Merge "Fixed for bug 1168 : Issue while update subnet"
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / main / java / org / opendaylight / controller / sal / restconf / impl / StructuredData.java
index 12f33d4562526b25feef31e8dd9e7c6a9dfa352c..c745a8009deac75a70a7249626b07f56457d9243 100644 (file)
@@ -1,16 +1,33 @@
+/*
+ * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
 package org.opendaylight.controller.sal.restconf.impl;
 
+import org.opendaylight.controller.sal.core.api.mount.MountInstance;
 import org.opendaylight.yangtools.yang.data.api.CompositeNode;
 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
 
 public class StructuredData {
-    
+
     private final CompositeNode data;
     private final DataSchemaNode schema;
-    
-    public StructuredData(CompositeNode data, DataSchemaNode schema) {
+    private final MountInstance mountPoint;
+    private final boolean prettyPrintMode;
+
+    public StructuredData(final CompositeNode data, final DataSchemaNode schema, final MountInstance mountPoint) {
+        this(data, schema, mountPoint, false);
+    }
+
+    public StructuredData(final CompositeNode data, final DataSchemaNode schema, final MountInstance mountPoint,
+            final boolean preattyPrintMode) {
         this.data = data;
         this.schema = schema;
+        this.mountPoint = mountPoint;
+        this.prettyPrintMode = preattyPrintMode;
     }
 
     public CompositeNode getData() {
@@ -20,5 +37,12 @@ public class StructuredData {
     public DataSchemaNode getSchema() {
         return schema;
     }
-    
+
+    public MountInstance getMountPoint() {
+        return mountPoint;
+    }
+
+    public boolean isPrettyPrintMode() {
+        return prettyPrintMode;
+    }
 }