X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fcompatibility%2Finventory-topology-compatibility%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fcompatibility%2Fswitchmanager%2FConfigurableSwitchManager.java;fp=opendaylight%2Fmd-sal%2Fcompatibility%2Finventory-topology-compatibility%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fcompatibility%2Fswitchmanager%2FConfigurableSwitchManager.java;h=0000000000000000000000000000000000000000;hb=125644e6e71a7b47ebcfd85ee3d5671d69468742;hp=63f682a3618898cc1dcf9419ad7d22d28414de3e;hpb=1bf9f8c060f6adf32f527f6efe82f78f774ffd8d;p=controller.git diff --git a/opendaylight/md-sal/compatibility/inventory-topology-compatibility/src/main/java/org/opendaylight/controller/md/compatibility/switchmanager/ConfigurableSwitchManager.java b/opendaylight/md-sal/compatibility/inventory-topology-compatibility/src/main/java/org/opendaylight/controller/md/compatibility/switchmanager/ConfigurableSwitchManager.java deleted file mode 100644 index 63f682a361..0000000000 --- a/opendaylight/md-sal/compatibility/inventory-topology-compatibility/src/main/java/org/opendaylight/controller/md/compatibility/switchmanager/ConfigurableSwitchManager.java +++ /dev/null @@ -1,86 +0,0 @@ -/** - * Copyright (c) 2014 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.md.compatibility.switchmanager; - -import java.util.List; - -import org.opendaylight.controller.sal.utils.Status; -import org.opendaylight.controller.switchmanager.ISwitchManager; -import org.opendaylight.controller.switchmanager.SpanConfig; -import org.opendaylight.controller.switchmanager.SubnetConfig; -import org.opendaylight.controller.switchmanager.SwitchConfig; - -/** - * These methods should be backed by config subsystem. - */ -public abstract class ConfigurableSwitchManager implements ISwitchManager { - @Override - public Status saveSwitchConfig() { - throw new UnsupportedOperationException("TODO: auto-generated method stub"); - } - - @Override - public Status removeSpanConfig(final SpanConfig cfgObject) { - throw new UnsupportedOperationException("TODO: auto-generated method stub"); - } - - @Override - public Status addSubnet(final SubnetConfig configObject) { - throw new UnsupportedOperationException("TODO: auto-generated method stub"); - } - - @Override - public final Status addSpanConfig(final SpanConfig configObject) { - throw new UnsupportedOperationException("TODO: auto-generated method stub"); - } - - @Override - public final List getSpanConfigList() { - throw new UnsupportedOperationException("TODO: auto-generated method stub"); - } - - @Override - public final void updateSwitchConfig(final SwitchConfig cfgObject) { - throw new UnsupportedOperationException("TODO: auto-generated method stub"); - } - - @Override - public final Status updateNodeConfig(final SwitchConfig switchConfig) { - throw new UnsupportedOperationException("TODO: auto-generated method stub"); - } - - @Override - public final SubnetConfig getSubnetConfig(final String subnet) { - throw new UnsupportedOperationException("TODO: auto-generated method stub"); - } - - @Override - public final Status removeNodeConfig(final String nodeId) { - throw new UnsupportedOperationException("TODO: auto-generated method stub"); - } - - @Override - public final Status removeSubnet(final SubnetConfig configObject) { - throw new UnsupportedOperationException("TODO: auto-generated method stub"); - } - - @Override - public final List getSubnetsConfigList() { - throw new UnsupportedOperationException("TODO: auto-generated method stub"); - } - - @Override - public final SwitchConfig getSwitchConfig(final String nodeId) { - throw new UnsupportedOperationException("TODO: auto-generated method stub"); - } - - @Override - public Status modifySubnet(final SubnetConfig configObject) { - throw new UnsupportedOperationException("TODO: auto-generated method stub"); - } -}