Fix minor bug in FRM proactive flow code path
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-api / src / main / java / org / opendaylight / controller / yang / model / api / LeafListSchemaNode.java
index 2c41e19a27278c1e6126bc6bc9c89167a8452f46..8780322e52fa691fc34919fff44fcfbd52a36407 100644 (file)
@@ -7,12 +7,20 @@
  */\r
 package org.opendaylight.controller.yang.model.api;\r
 \r
+/**\r
+ * Interface describing YANG 'leaf-list' statement.\r
+ */\r
 public interface LeafListSchemaNode extends DataSchemaNode {\r
 \r
     TypeDefinition<? extends TypeDefinition<?>> getType();\r
 \r
+    /**\r
+     * YANG 'ordered-by' statement. It defines whether the order of entries\r
+     * within this leaf-list are determined by the user or the system. If not\r
+     * present, default is false.\r
+     *\r
+     * @return true if ordered-by argument is "user", false otherwise\r
+     */\r
     boolean isUserOrdered();\r
 \r
-    MustDefinition getMustDefinition();\r
-\r
 }\r