Remove CSS code
[controller.git] / opendaylight / config / config-api / src / main / java / org / opendaylight / controller / config / api / ModuleIdentifier.java
diff --git a/opendaylight/config/config-api/src/main/java/org/opendaylight/controller/config/api/ModuleIdentifier.java b/opendaylight/config/config-api/src/main/java/org/opendaylight/controller/config/api/ModuleIdentifier.java
deleted file mode 100644 (file)
index 600c9ee..0000000
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- * 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.config.api;
-
-import org.opendaylight.yangtools.concepts.Identifier;
-
-public class ModuleIdentifier implements Identifier {
-    private static final long serialVersionUID = 1L;
-    private final String factoryName;
-    private final String instanceName;
-
-    public ModuleIdentifier(final String factoryName, final String instanceName) {
-        if (factoryName == null) {
-            throw new IllegalArgumentException("Parameter 'factoryName' is null");
-        }
-        if (instanceName == null) {
-            throw new IllegalArgumentException("Parameter 'instanceName' is null");
-        }
-        this.factoryName = factoryName;
-        this.instanceName = instanceName;
-    }
-
-    public String getFactoryName() {
-        return factoryName;
-    }
-
-    public String getInstanceName() {
-        return instanceName;
-    }
-
-    @Override
-    public boolean equals(final Object object) {
-        if (this == object) {
-            return true;
-        }
-        if (object == null || getClass() != object.getClass()) {
-            return false;
-        }
-
-        ModuleIdentifier that = (ModuleIdentifier) object;
-
-        if (!factoryName.equals(that.factoryName)) {
-            return false;
-        }
-        if (!instanceName.equals(that.instanceName)) {
-            return false;
-        }
-
-        return true;
-    }
-
-    @Override
-    public int hashCode() {
-        int result = factoryName.hashCode();
-        result = 31 * result + instanceName.hashCode();
-        return result;
-    }
-
-    @Override
-    public String toString() {
-        return "ModuleIdentifier{" + "factoryName='" + factoryName + '\''
-                + ", instanceName='" + instanceName + '\'' + '}';
-    }
-}