b5f6cecd349c57b57def35459ffc3e113b5ebfd3
[controller.git] / opendaylight / md-sal / compatibility / inventory-topology-compatibility / src / main / java / org / opendaylight / controller / md / compatibility / topologymanager / ConfigurableLinkManager.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.topologymanager
9
10 import org.opendaylight.controller.topologymanager.ITopologyManager
11 import org.opendaylight.controller.topologymanager.TopologyUserLinkConfig
12
13 abstract class ConfigurableLinkManager implements ITopologyManager {
14     
15     final override addUserLink(TopologyUserLinkConfig link) {
16         throw new UnsupportedOperationException("TODO: auto-generated method stub")
17         
18     }
19     
20     
21     final override deleteUserLink(String linkName) {
22         throw new UnsupportedOperationException("TODO: auto-generated method stub")
23         
24     }
25     
26     
27     final override getUserLinks() {
28         throw new UnsupportedOperationException("TODO: auto-generated method stub")
29         
30     }
31 }