X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-rest-connector%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Frestconf%2Fimpl%2FStructuredData.java;h=29354349671943d2c3e67e16188c06ae9dd3bc55;hp=62a9ae05814b3a2d7a7d259c0811d484c580f99e;hb=bdcd6c4baea3357499a1fcdff459259b56373baa;hpb=1306d0ed4b53625a1ba83e6aa5d693cd12ce7001 diff --git a/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/restconf/impl/StructuredData.java b/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/restconf/impl/StructuredData.java index 62a9ae0581..2935434967 100644 --- a/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/restconf/impl/StructuredData.java +++ b/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/restconf/impl/StructuredData.java @@ -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.md.sal.dom.api.DOMMountPoint; import org.opendaylight.yangtools.yang.data.api.CompositeNode; -import org.opendaylight.yangtools.yang.model.api.*; +import org.opendaylight.yangtools.yang.model.api.DataSchemaNode; public class StructuredData { private final CompositeNode data; private final DataSchemaNode schema; + private final DOMMountPoint mountPoint; + private final boolean prettyPrintMode; - public StructuredData(CompositeNode data, DataSchemaNode schema) { + public StructuredData(final CompositeNode data, final DataSchemaNode schema, final DOMMountPoint mountPoint) { + this(data, schema, mountPoint, false); + } + + public StructuredData(final CompositeNode data, final DataSchemaNode schema, final DOMMountPoint mountPoint, + final boolean preattyPrintMode) { this.data = data; this.schema = schema; + this.mountPoint = mountPoint; + this.prettyPrintMode = preattyPrintMode; } public CompositeNode getData() { @@ -20,4 +37,12 @@ public class StructuredData { public DataSchemaNode getSchema() { return schema; } + + public DOMMountPoint getMountPoint() { + return mountPoint; + } + + public boolean isPrettyPrintMode() { + return prettyPrintMode; + } }