Merge "Fix failing IT tests"
[controller.git] / opendaylight / md-sal / compatibility / inventory-topology-compatibility / src / main / java / org / opendaylight / controller / md / compatibility / switchmanager / ConfigurableSwitchManager.java
1 /**
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.md.compatibility.switchmanager;
9
10 import java.util.List;
11
12 import org.opendaylight.controller.sal.utils.Status;
13 import org.opendaylight.controller.switchmanager.ISwitchManager;
14 import org.opendaylight.controller.switchmanager.SpanConfig;
15 import org.opendaylight.controller.switchmanager.SubnetConfig;
16 import org.opendaylight.controller.switchmanager.SwitchConfig;
17
18 /**
19  * These methods should be backed by config subsystem.
20  */
21 public abstract class ConfigurableSwitchManager implements ISwitchManager {
22     @Override
23     public Status saveSwitchConfig() {
24         throw new UnsupportedOperationException("TODO: auto-generated method stub");
25     }
26
27     @Override
28     public Status removeSpanConfig(final SpanConfig cfgObject) {
29         throw new UnsupportedOperationException("TODO: auto-generated method stub");
30     }
31
32     @Override
33     public Status addSubnet(final SubnetConfig configObject) {
34         throw new UnsupportedOperationException("TODO: auto-generated method stub");
35     }
36
37     @Override
38     public final Status addSpanConfig(final SpanConfig configObject) {
39         throw new UnsupportedOperationException("TODO: auto-generated method stub");
40     }
41
42     @Override
43     public final List<SpanConfig> getSpanConfigList() {
44         throw new UnsupportedOperationException("TODO: auto-generated method stub");
45     }
46
47     @Override
48     public final void updateSwitchConfig(final SwitchConfig cfgObject) {
49         throw new UnsupportedOperationException("TODO: auto-generated method stub");
50     }
51
52     @Override
53     public final Status updateNodeConfig(final SwitchConfig switchConfig) {
54         throw new UnsupportedOperationException("TODO: auto-generated method stub");
55     }
56
57     @Override
58     public final SubnetConfig getSubnetConfig(final String subnet) {
59         throw new UnsupportedOperationException("TODO: auto-generated method stub");
60     }
61
62     @Override
63     public final Status removeNodeConfig(final String nodeId) {
64         throw new UnsupportedOperationException("TODO: auto-generated method stub");
65     }
66
67     @Override
68     public final Status removeSubnet(final SubnetConfig configObject) {
69         throw new UnsupportedOperationException("TODO: auto-generated method stub");
70     }
71
72     @Override
73     public final List<SubnetConfig> getSubnetsConfigList() {
74         throw new UnsupportedOperationException("TODO: auto-generated method stub");
75     }
76
77     @Override
78     public final SwitchConfig getSwitchConfig(final String nodeId) {
79         throw new UnsupportedOperationException("TODO: auto-generated method stub");
80     }
81
82     @Override
83     public Status modifySubnet(final SubnetConfig configObject) {
84         throw new UnsupportedOperationException("TODO: auto-generated method stub");
85     }
86 }