Remove binding spec2
[mdsal.git] / binding2 / mdsal-binding2-generator-util / src / main / java / org / opendaylight / mdsal / binding / javav2 / generator / util / ReferencedTypeImpl.java
diff --git a/binding2/mdsal-binding2-generator-util/src/main/java/org/opendaylight/mdsal/binding/javav2/generator/util/ReferencedTypeImpl.java b/binding2/mdsal-binding2-generator-util/src/main/java/org/opendaylight/mdsal/binding/javav2/generator/util/ReferencedTypeImpl.java
deleted file mode 100644 (file)
index 2a326a4..0000000
+++ /dev/null
@@ -1,57 +0,0 @@
-/*
- * Copyright (c) 2017 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.mdsal.binding.javav2.generator.util;
-
-import org.opendaylight.mdsal.binding.javav2.generator.context.ModuleContext;
-
-/**
- * Wraps combination of <code>packageName</code> and <code>name</code> to the
- * object representation.
- *
- */
-public final class ReferencedTypeImpl extends AbstractBaseType {
-
-    /**
-     * Creates instance of this class with concrete package name and type name.
-     *
-     * @param packageName
-     *            string with the package name
-     * @param name
-     *            string with the name for referenced type
-     */
-    public ReferencedTypeImpl(String packageName, String name, ModuleContext context) {
-        super(packageName, name, context);
-    }
-
-    /**
-     * Creates instance of this class with concrete package name and type name
-     * for already normalized identifier.
-     *
-     * @param packageName
-     *            string with the package name
-     * @param name
-     *            string with the name for referenced type
-     * @param isNormalized
-     *            indicates if identifier name is normalized
-     */
-    public ReferencedTypeImpl(String packageName, String name, boolean isNormalized, ModuleContext context) {
-        super(packageName, name, isNormalized, context);
-    }
-
-    @Override
-    public String toString() {
-        StringBuilder builder = new StringBuilder();
-        builder.append("ReferencedTypeImpl [packageName=");
-        builder.append(getPackageName());
-        builder.append(", name=");
-        builder.append(getName());
-        builder.append(']');
-        return builder.toString();
-    }
-}