Fixing sonar issues 4
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / BaseTypes.java
index 76157fbcb115769eec7071cf7f928c298072f7d6..4688f58aa6587c1a8a590bb9eb6a9fbda9373757 100644 (file)
@@ -1,70 +1,75 @@
-/*\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.yangtools.yang.model.util;\r
-\r
-import java.net.URI;\r
-import java.util.ArrayList;\r
-import java.util.Collections;\r
-import java.util.Date;\r
-import java.util.List;\r
-\r
-import org.opendaylight.yangtools.yang.common.QName;\r
-import org.opendaylight.yangtools.yang.model.api.SchemaPath;\r
-\r
-public final class BaseTypes {\r
-\r
-    private BaseTypes() {}\r
-\r
-    public static final URI BaseTypesNamespace = URI\r
-            .create("urn:ietf:params:xml:ns:yang:1");\r
-\r
-    /**\r
-     * Construct QName for Built-in base Yang type. The namespace for\r
-     * built-in base yang types is defined as: urn:ietf:params:xml:ns:yang:1\r
-     *\r
-     * @param typeName yang type name\r
-     * @return built-in base yang type QName.\r
-     */\r
-    public static final QName constructQName(final String typeName) {\r
-        return new QName(BaseTypesNamespace, typeName);\r
-    }\r
-\r
-    /**\r
-     * Creates Schema Path from Qname.\r
-     *\r
-     * @param typeName yang type QName\r
-     * @return Schema Path from Qname.\r
-     */\r
-    public static final SchemaPath schemaPath(final QName typeName) {\r
-        List<QName> pathList = Collections.singletonList(typeName);\r
-        return new SchemaPath(pathList, true);\r
-    }\r
-\r
-    /**\r
-     * Creates Schema Path from List of partial paths defined as Strings, module Namespace and\r
-     * module latest Revision Date.\r
-     *\r
-     * @param actualPath List of partial paths\r
-     * @param namespace Module Namespace\r
-     * @param revision Revision Date\r
-     * @return Schema Path\r
-     */\r
-    public static final SchemaPath schemaPath(final List<String> actualPath, final URI namespace, final Date revision) {\r
-        if (actualPath == null) {\r
-            throw new IllegalArgumentException("The actual path List MUST be specified.");\r
-        }\r
-        final List<QName> pathList = new ArrayList<QName>();\r
-        for (final String path : actualPath) {\r
-            final QName qname = new QName(namespace, revision, path);\r
-            if (qname != null) {\r
-                pathList.add(qname);\r
-            }\r
-        }\r
-        return new SchemaPath(pathList, true);\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.yangtools.yang.model.util;
+
+import java.net.URI;
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.Date;
+import java.util.List;
+
+import org.opendaylight.yangtools.yang.common.QName;
+import org.opendaylight.yangtools.yang.model.api.SchemaPath;
+
+public final class BaseTypes {
+
+    private BaseTypes() {
+    }
+
+    public static final URI BASE_TYPES_NAMESPACE = URI.create("urn:ietf:params:xml:ns:yang:1");
+
+    /**
+     * Construct QName for Built-in base Yang type. The namespace for built-in
+     * base yang types is defined as: urn:ietf:params:xml:ns:yang:1
+     * 
+     * @param typeName
+     *            yang type name
+     * @return built-in base yang type QName.
+     */
+    public static QName constructQName(final String typeName) {
+        return new QName(BASE_TYPES_NAMESPACE, typeName);
+    }
+
+    /**
+     * Creates Schema Path from Qname.
+     * 
+     * @param typeName
+     *            yang type QName
+     * @return Schema Path from Qname.
+     */
+    public static SchemaPath schemaPath(final QName typeName) {
+        List<QName> pathList = Collections.singletonList(typeName);
+        return new SchemaPath(pathList, true);
+    }
+
+    /**
+     * Creates Schema Path from List of partial paths defined as Strings, module
+     * Namespace and module latest Revision Date.
+     * 
+     * @param actualPath
+     *            List of partial paths
+     * @param namespace
+     *            Module Namespace
+     * @param revision
+     *            Revision Date
+     * @return Schema Path
+     */
+    public static SchemaPath schemaPath(final List<String> actualPath, final URI namespace, final Date revision) {
+        if (actualPath == null) {
+            throw new IllegalArgumentException("The actual path List MUST be specified.");
+        }
+        final List<QName> pathList = new ArrayList<QName>();
+        for (final String path : actualPath) {
+            final QName qname = new QName(namespace, revision, path);
+            if (qname != null) {
+                pathList.add(qname);
+            }
+        }
+        return new SchemaPath(pathList, true);
+    }
+}