Implemented YANG identityref type parsing.
[controller.git] / opendaylight / sal / yang-prototype / code-generator / yang-model-parser-impl / src / main / java / org / opendaylight / controller / yang / model / parser / builder / api / AugmentationSchemaBuilder.java
index ef54c0bc6b7274a3969386fd936fff9a71a1f65f..2648c01722df715a5865b90cdbb5b86a6184f27a 100644 (file)
@@ -18,15 +18,22 @@ import org.opendaylight.controller.yang.model.api.Status;
  */
 public interface AugmentationSchemaBuilder extends ChildNodeBuilder {
 
-       void setDescription(String description);
-       void setReference(String reference);
-       void setStatus(Status status);
+    String getWhenCondition();
 
-       String getTargetPathAsString();
-       SchemaPath getTargetPath();
+    void addWhenCondition(String whenCondition);
 
-       Set<DataSchemaNodeBuilder> getChildNodes();
+    void setDescription(String description);
 
-        AugmentationSchema build();
+    void setReference(String reference);
+
+    void setStatus(Status status);
+
+    String getTargetPathAsString();
+
+    SchemaPath getTargetPath();
+
+    Set<DataSchemaNodeBuilder> getChildNodes();
+
+    AugmentationSchema build();
 
 }