Added validation of range and length constraints.
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-api / src / main / java / org / opendaylight / controller / yang / model / api / ChoiceNode.java
index b67da660cc0dcca222d7d44ddc380fc091fbbb0d..03a8962d552c26031e51f178e0160c30a77e8d8f 100644 (file)
@@ -19,5 +19,7 @@ public interface ChoiceNode extends DataSchemaNode, AugmentationTarget {
      * @return ChoiceCaseNode objects defined in this node
      */
     Set<ChoiceCaseNode> getCases();
+    
+    String getDefaultCase();
 
 }