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%2FNodeWrapper.java;h=f9bd7d7aaa4edf0fa4d46a995ee5ce83b61dc138;hb=273a60e4a5c67c9d6dab1889f86e15092ddbefbd;hp=6b8665f7653c26e8881c685aa0e507231a0d8db6;hpb=54bed4dd6dfbada9a8e2ddf70ca84952aec3f55a;p=controller.git diff --git a/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/restconf/impl/NodeWrapper.java b/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/restconf/impl/NodeWrapper.java index 6b8665f765..f9bd7d7aaa 100644 --- a/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/restconf/impl/NodeWrapper.java +++ b/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/restconf/impl/NodeWrapper.java @@ -1,3 +1,10 @@ +/* + * 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 java.net.URI; @@ -9,6 +16,8 @@ public interface NodeWrapper> { void setQname(QName name); + QName getQname(); + T unwrap(); boolean isChangeAllowed(); @@ -18,4 +27,4 @@ public interface NodeWrapper> { void setNamespace(URI namespace); String getLocalName(); -} \ No newline at end of file +}