Add rename notes for Any{Data,Xml}SchemaNode 58/81158/1
authorRobert Varga <robert.varga@pantheon.tech>
Tue, 26 Mar 2019 08:19:49 +0000 (09:19 +0100)
committerRobert Varga <robert.varga@pantheon.tech>
Tue, 26 Mar 2019 08:19:49 +0000 (09:19 +0100)
These interfaces should be renamed to keep consistency with other
SchemaNodes.

Change-Id: Ia5543040817607effdc8f9bbc542c3bdb7e32fd8
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
yang/yang-model-api/src/main/java/org/opendaylight/yangtools/yang/model/api/AnyDataSchemaNode.java
yang/yang-model-api/src/main/java/org/opendaylight/yangtools/yang/model/api/AnyXmlSchemaNode.java

index 295fc72dba89cdf609d75795661701d772a3bbd8..0ba7cfaee3afe70414829ac8f053428123be8000 100644 (file)
@@ -5,7 +5,6 @@
  * 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.yangtools.yang.model.api;
 
 import com.google.common.annotations.Beta;
@@ -21,6 +20,7 @@ import java.util.Optional;
  * model for anydata content to become known through protocol signaling or other means that are outside the scope
  * of this document.
  */
+// FIXME: 4.0.0: rename this to 'AnydataSchemaNode'
 @Beta
 public interface AnyDataSchemaNode extends DataSchemaNode, MandatoryAware, MustConstraintAware {
     /**
index 6b1ef8e2e92913d0388cf11b8c229755985a4b17..c8c2513dfbedde5684f275a59649af133a72c453 100644 (file)
@@ -16,6 +16,7 @@ package org.opendaylight.yangtools.yang.model.api;
  * This interface was modeled according to definition in
  * <a href="https://tools.ietf.org/html/rfc6020#section-7.10">[RFC-6020] The anyxml Statement</a>
  */
+// FIXME: 4.0.0: rename this to 'AnyxmlSchemaNode'
 public interface AnyXmlSchemaNode extends DataSchemaNode, MandatoryAware, MustConstraintAware {
 
 }