X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-rest-connector%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Frestconf%2Fimpl%2FStructuredData.java;fp=opendaylight%2Fmd-sal%2Fsal-rest-connector%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Frestconf%2Fimpl%2FStructuredData.java;h=0000000000000000000000000000000000000000;hb=13d48361d8c7b09a61bf6aaa37cda699b14f881a;hp=be4ac992da76072db056d70db590327edb6c39ae;hpb=cf3c39048445c63710c82c0b3fb86a5694d5644f;p=controller.git 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 deleted file mode 100644 index be4ac992da..0000000000 --- a/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/restconf/impl/StructuredData.java +++ /dev/null @@ -1,52 +0,0 @@ -/* - * 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.DataSchemaNode; - -/** - * @deprecated class will be removed in Lithium release - */ -@Deprecated -public class StructuredData { - - private final CompositeNode data; - private final DataSchemaNode schema; - private final DOMMountPoint mountPoint; - private final boolean prettyPrintMode; - - 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; - prettyPrintMode = preattyPrintMode; - } - - public CompositeNode getData() { - return data; - } - - public DataSchemaNode getSchema() { - return schema; - } - - public DOMMountPoint getMountPoint() { - return mountPoint; - } - - public boolean isPrettyPrintMode() { - return prettyPrintMode; - } -}