Fixed bugs in naming conventions of packages.
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-util / src / main / java / org / opendaylight / controller / yang / model / util / Identityref.java
-/*\r
-  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.\r
-  *\r
-  * This program and the accompanying materials are made available under the\r
-  * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
-  * and is available at http://www.eclipse.org/legal/epl-v10.html\r
-  */\r
-package org.opendaylight.controller.model.util;\r
-\r
-import java.util.Collections;\r
-import java.util.List;\r
-\r
-import org.opendaylight.controller.model.api.type.IdentityTypeDefinition;\r
-import org.opendaylight.controller.model.api.type.IdentityrefTypeDefinition;\r
-import org.opendaylight.controller.yang.common.QName;\r
-import org.opendaylight.controller.yang.model.api.RevisionAwareXPath;\r
-import org.opendaylight.controller.yang.model.api.SchemaPath;\r
-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 Identityref Type Definition interface.\r
- *\r
- * @see IdentityrefTypeDefinition\r
- */\r
-public class Identityref implements IdentityrefTypeDefinition {\r
-\r
-    private final QName name = BaseTypes.constructQName("identityref");\r
-    private final SchemaPath path = BaseTypes.schemaPath(name);\r
-    private final String description = "The identityref type is used to reference an existing identity.";\r
-    private final String reference = "https://tools.ietf.org/html/rfc6020#section-9.10";\r
-\r
-    private final IdentityTypeDefinition identity;\r
-    private final RevisionAwareXPath xpath;\r
-\r
-    private String units = "";\r
-\r
-    public Identityref(RevisionAwareXPath xpath, IdentityTypeDefinition identity) {\r
-        super();\r
-        this.identity = identity;\r
-        this.xpath = xpath;\r
-    }\r
-    \r
-    public Identityref(RevisionAwareXPath xpath) {\r
-        super();\r
-        this.xpath = xpath;\r
-        this.identity = null;\r
-    }\r
-\r
-    /*\r
-     * (non-Javadoc)\r
-     * \r
-     * @see org.opendaylight.controller.yang.model.api.TypeDefinition#getBaseType()\r
-     */\r
-    @Override\r
-    public IdentityTypeDefinition getBaseType() {\r
-        return identity;\r
-    }\r
-\r
-    /*\r
-     * (non-Javadoc)\r
-     * \r
-     * @see org.opendaylight.controller.yang.model.api.TypeDefinition#getUnits()\r
-     */\r
-    @Override\r
-    public String getUnits() {\r
-        return units;\r
-    }\r
-\r
-    /*\r
-     * (non-Javadoc)\r
-     * \r
-     * @see org.opendaylight.controller.yang.model.api.TypeDefinition#getDefaultValue()\r
-     */\r
-    @Override\r
-    public Object getDefaultValue() {\r
-        return identity;\r
-    }\r
-\r
-    /*\r
-     * (non-Javadoc)\r
-     * \r
-     * @see org.opendaylight.controller.yang.model.api.SchemaNode#getQName()\r
-     */\r
-    @Override\r
-    public QName getQName() {\r
-        return name;\r
-    }\r
-\r
-    /*\r
-     * (non-Javadoc)\r
-     * \r
-     * @see org.opendaylight.controller.yang.model.api.SchemaNode#getPath()\r
-     */\r
-    @Override\r
-    public SchemaPath getPath() {\r
-        return path;\r
-    }\r
-\r
-    /*\r
-     * (non-Javadoc)\r
-     * \r
-     * @see org.opendaylight.controller.yang.model.api.SchemaNode#getDescription()\r
-     */\r
-    @Override\r
-    public String getDescription() {\r
-        return description;\r
-    }\r
-\r
-    /*\r
-     * (non-Javadoc)\r
-     * \r
-     * @see org.opendaylight.controller.yang.model.api.SchemaNode#getReference()\r
-     */\r
-    @Override\r
-    public String getReference() {\r
-        return reference;\r
-    }\r
-\r
-    /*\r
-     * (non-Javadoc)\r
-     * \r
-     * @see org.opendaylight.controller.yang.model.api.SchemaNode#getStatus()\r
-     */\r
-    @Override\r
-    public Status getStatus() {\r
-        return Status.CURRENT;\r
-    }\r
-\r
-    @Override\r
-    public List<UnknownSchemaNode> getUnknownSchemaNodes() {\r
-        return Collections.emptyList();\r
-    }\r
-\r
-    /*\r
-     * (non-Javadoc)\r
-     * \r
-     * @see\r
-     * org.opendaylight.controller.yang.model.base.type.api.IdentityrefTypeDefinition#getIdentityName\r
-     * ()\r
-     */\r
-    @Override\r
-    public IdentityTypeDefinition getIdentity() {\r
-        return identity;\r
-    }\r
-    \r
-    @Override\r
-    public RevisionAwareXPath getPathStatement() {\r
-        return xpath;\r
-    }\r
-    \r
-    \r
-}\r
+/*
+  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
+  *
+  * This program and the accompanying materials are made available under the
+  * 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.controller.yang.model.util;
+
+import java.util.Collections;
+import java.util.List;
+
+import org.opendaylight.controller.yang.common.QName;
+import org.opendaylight.controller.yang.model.api.RevisionAwareXPath;
+import org.opendaylight.controller.yang.model.api.SchemaPath;
+import org.opendaylight.controller.yang.model.api.Status;
+import org.opendaylight.controller.yang.model.api.UnknownSchemaNode;
+import org.opendaylight.controller.yang.model.api.type.IdentityTypeDefinition;
+import org.opendaylight.controller.yang.model.api.type.IdentityrefTypeDefinition;
+
+/**
+ * The <code>default</code> implementation of Identityref Type Definition interface.
+ *
+ * @see IdentityrefTypeDefinition
+ */
+public class Identityref implements IdentityrefTypeDefinition {
+
+    private final QName name = BaseTypes.constructQName("identityref");
+    private final SchemaPath path = BaseTypes.schemaPath(name);
+    private final String description = "The identityref type is used to reference an existing identity.";
+    private final String reference = "https://tools.ietf.org/html/rfc6020#section-9.10";
+
+    private final IdentityTypeDefinition identity;
+    private final RevisionAwareXPath xpath;
+
+    private String units = "";
+
+    public Identityref(RevisionAwareXPath xpath, IdentityTypeDefinition identity) {
+        super();
+        this.identity = identity;
+        this.xpath = xpath;
+    }
+    
+    public Identityref(RevisionAwareXPath xpath) {
+        super();
+        this.xpath = xpath;
+        this.identity = null;
+    }
+
+    /*
+     * (non-Javadoc)
+     * 
+     * @see org.opendaylight.controller.yang.model.api.TypeDefinition#getBaseType()
+     */
+    @Override
+    public IdentityTypeDefinition getBaseType() {
+        return identity;
+    }
+
+    /*
+     * (non-Javadoc)
+     * 
+     * @see org.opendaylight.controller.yang.model.api.TypeDefinition#getUnits()
+     */
+    @Override
+    public String getUnits() {
+        return units;
+    }
+
+    /*
+     * (non-Javadoc)
+     * 
+     * @see org.opendaylight.controller.yang.model.api.TypeDefinition#getDefaultValue()
+     */
+    @Override
+    public Object getDefaultValue() {
+        return identity;
+    }
+
+    /*
+     * (non-Javadoc)
+     * 
+     * @see org.opendaylight.controller.yang.model.api.SchemaNode#getQName()
+     */
+    @Override
+    public QName getQName() {
+        return name;
+    }
+
+    /*
+     * (non-Javadoc)
+     * 
+     * @see org.opendaylight.controller.yang.model.api.SchemaNode#getPath()
+     */
+    @Override
+    public SchemaPath getPath() {
+        return path;
+    }
+
+    /*
+     * (non-Javadoc)
+     * 
+     * @see org.opendaylight.controller.yang.model.api.SchemaNode#getDescription()
+     */
+    @Override
+    public String getDescription() {
+        return description;
+    }
+
+    /*
+     * (non-Javadoc)
+     * 
+     * @see org.opendaylight.controller.yang.model.api.SchemaNode#getReference()
+     */
+    @Override
+    public String getReference() {
+        return reference;
+    }
+
+    /*
+     * (non-Javadoc)
+     * 
+     * @see org.opendaylight.controller.yang.model.api.SchemaNode#getStatus()
+     */
+    @Override
+    public Status getStatus() {
+        return Status.CURRENT;
+    }
+
+    @Override
+    public List<UnknownSchemaNode> getUnknownSchemaNodes() {
+        return Collections.emptyList();
+    }
+
+    /*
+     * (non-Javadoc)
+     * 
+     * @see
+     * org.opendaylight.controller.yang.model.base.type.api.IdentityrefTypeDefinition#getIdentityName
+     * ()
+     */
+    @Override
+    public IdentityTypeDefinition getIdentity() {
+        return identity;
+    }
+    
+    @Override
+    public RevisionAwareXPath getPathStatement() {
+        return xpath;
+    }
+    
+    
+}