Bug 868: Remove AD-SAL components which were deprecated in Lithium
[controller.git] / opendaylight / adsal / hosttracker_new / implementation / src / test / java / org / opendaylight / controller / hosttracker / test / MockEntityClassifierMac.java
diff --git a/opendaylight/adsal/hosttracker_new/implementation/src/test/java/org/opendaylight/controller/hosttracker/test/MockEntityClassifierMac.java b/opendaylight/adsal/hosttracker_new/implementation/src/test/java/org/opendaylight/controller/hosttracker/test/MockEntityClassifierMac.java
deleted file mode 100644 (file)
index 436e6fa..0000000
+++ /dev/null
@@ -1,78 +0,0 @@
-/*
- * Copyright (c) 2013 Big Switch Networks, Inc.
- *
- * Licensed under the Eclipse Public License, Version 1.0 (the
- * "License"); you may not use this file except in compliance with the
- * License. You may obtain a copy of the License at
- *
- *      http://www.eclipse.org/legal/epl-v10.html
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- * implied. See the License for the specific language governing
- * permissions and limitations under the License.
- */
-
-package org.opendaylight.controller.hosttracker.test;
-
-import static org.opendaylight.controller.hosttracker.IDeviceService.DeviceField.MAC;
-import static org.opendaylight.controller.hosttracker.IDeviceService.DeviceField.SWITCHPORT;
-import static org.opendaylight.controller.hosttracker.IDeviceService.DeviceField.VLAN;
-
-import java.util.EnumSet;
-
-import org.opendaylight.controller.hosttracker.Entity;
-import org.opendaylight.controller.hosttracker.IDeviceService;
-import org.opendaylight.controller.hosttracker.IDeviceService.DeviceField;
-import org.opendaylight.controller.hosttracker.IEntityClass;
-import org.opendaylight.controller.hosttracker.internal.DefaultEntityClassifier;
-
-/**
- * A simple IEntityClassifier. Useful for tests that need an IEntityClassifier
- * with switch/port as key fields.
- */
-public class MockEntityClassifierMac extends DefaultEntityClassifier {
-    public static class TestEntityClassMac implements IEntityClass {
-        protected String name;
-
-        public TestEntityClassMac(String name) {
-            this.name = name;
-        }
-
-        @Override
-        public EnumSet<DeviceField> getKeyFields() {
-            return EnumSet.of(MAC, VLAN);
-        }
-
-        @Override
-        public String getName() {
-            return name;
-        }
-    }
-
-    public static IEntityClass testECMac1 = new MockEntityClassifierMac.TestEntityClassMac(
-            "testECMac1");
-    public static IEntityClass testECMac2 = new MockEntityClassifierMac.TestEntityClassMac(
-            "testECMac2");
-
-    @Override
-    public IEntityClass classifyEntity(Entity entity) {
-        if (((Long) entity.getPort().getNode().getID()) == null) {
-            throw new IllegalArgumentException("Not all key fields specified."
-                    + " Required fields: " + getKeyFields());
-        } else if (((Long) entity.getPort().getNode().getID()) == 1L) {
-            return testECMac1;
-        } else if (((Long) entity.getPort().getNode().getID()) == 2L) {
-            return testECMac2;
-        } else if (((Long) entity.getPort().getNode().getID()) == -1L) {
-            return null;
-        }
-        return DefaultEntityClassifier.entityClass;
-    }
-
-    @Override
-    public EnumSet<IDeviceService.DeviceField> getKeyFields() {
-        return EnumSet.of(MAC, VLAN, SWITCHPORT);
-    }
-}
\ No newline at end of file