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=35000765cff05e4f59541bc497dfe253a3188644;hp=675e1194396147334509e35d5a6b4ebb21e40b35;hpb=2b6fb0773c725dad93c6bbbaabccdfa6ecf8aa20;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 675e119439..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,11 +16,15 @@ public interface NodeWrapper> { void setQname(QName name); + QName getQname(); + T unwrap(); + boolean isChangeAllowed(); + URI getNamespace(); void setNamespace(URI namespace); String getLocalName(); -} \ No newline at end of file +}