Merge "Increase timeout for waiting for broker service in sal-binding-it."
[controller.git] / opendaylight / md-sal / compatibility / inventory-topology-compatibility / src / main / java / org / opendaylight / controller / md / compatibility / switchmanager / ConfigurableSwitchManager.xtend
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 org.opendaylight.controller.switchmanager.ISwitchManager
11 import org.opendaylight.controller.switchmanager.SpanConfig
12 import org.opendaylight.controller.switchmanager.SwitchConfig
13 import org.opendaylight.controller.switchmanager.SubnetConfig
14
15 /**
16  * 
17  * THis methods should be backed by config subsystem.
18  * 
19  */
20 abstract class ConfigurableSwitchManager implements ISwitchManager {
21
22     override saveSwitchConfig() {
23         throw new UnsupportedOperationException("TODO: auto-generated method stub")
24     }
25
26     override removeSpanConfig(SpanConfig cfgObject) {
27         throw new UnsupportedOperationException("TODO: auto-generated method stub")
28     }
29
30     override addSubnet(SubnetConfig configObject) {
31         throw new UnsupportedOperationException("TODO: auto-generated method stub")
32
33     }
34
35     final override addSpanConfig(SpanConfig configObject) {
36         throw new UnsupportedOperationException("TODO: auto-generated method stub")
37
38     }
39
40     final override getSpanConfigList() {
41         throw new UnsupportedOperationException("TODO: auto-generated method stub")
42
43     }
44
45     final override updateSwitchConfig(SwitchConfig cfgObject) {
46         throw new UnsupportedOperationException("TODO: auto-generated method stub")
47
48     }
49
50     final override updateNodeConfig(SwitchConfig switchConfig) {
51         throw new UnsupportedOperationException("TODO: auto-generated method stub")
52
53     }
54
55     final override getSubnetConfig(String subnet) {
56         throw new UnsupportedOperationException("TODO: auto-generated method stub")
57     }
58
59     final override removeNodeConfig(String nodeId) {
60         throw new UnsupportedOperationException("TODO: auto-generated method stub")
61     }
62
63     final override removeSubnet(SubnetConfig configObject) {
64         throw new UnsupportedOperationException("TODO: auto-generated method stub")
65     }
66
67     final override getSubnetsConfigList() {
68         throw new UnsupportedOperationException("TODO: auto-generated method stub")
69     }
70
71     final override getSwitchConfig(String nodeId) {
72         throw new UnsupportedOperationException("TODO: auto-generated method stub")
73     }
74
75     override modifySubnet(SubnetConfig configObject) {
76         throw new UnsupportedOperationException("TODO: auto-generated method stub")
77     }
78 }