Updated YANG Type definitions and documentation in YANG Model Utils.
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-util / src / main / java / org / opendaylight / controller / model / util / IdentityType.java
index 775d368eaf27ae543dbaedccfa3cb000c5d9ccb3..750b11217c0f2aa55dadea3a0592677c6fa00722 100644 (file)
@@ -16,12 +16,18 @@ import org.opendaylight.controller.yang.model.api.SchemaPath;
 import org.opendaylight.controller.yang.model.api.Status;\r
 import org.opendaylight.controller.yang.model.api.UnknownSchemaNode;\r
 \r
+/**\r
+ * The <code>default</code> implementation of Identity Type Definition interface.\r
+ * \r
+ * @see IdentityTypeDefinition\r
+ */\r
 public class IdentityType implements IdentityTypeDefinition {\r
 \r
     private final QName name = BaseTypes.constructQName("identity");\r
     private final SchemaPath path = BaseTypes.schemaPath(name);\r
-    private final String description = "";\r
-    private final String reference = "";\r
+    private final String description = "The 'identity' statement is used to define a new " +\r
+               "globally unique, abstract, and untyped identity.";\r
+    private final String reference = "https://tools.ietf.org/html/rfc6020#section-7.16";\r
 \r
     private String units = "";\r
     private final QName identityName;\r