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