All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opendaylight.snmp4sdn.shell.TopoDiscoverEdge Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
/**
 * Copyright (c) 2014 Industrial Technology Research Institute of Taiwan. 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.snmp4sdn.shell;

import org.apache.karaf.shell.commands.Command;
import org.apache.karaf.shell.console.OsgiCommandSupport;
import org.opendaylight.snmp4sdn.ICore;

@Command(scope = "snmp4sdn", name = "TopoDiscoverEdges", description="Topology Discovery for Edges (collect edges among switches)")
public class TopoDiscoverEdge extends OsgiCommandSupport{
    private ICore controller;

    @Override
    protected Object doExecute() throws Exception {
        controller.topoDiscoverEdge();
        return null;
    }

    public void setController(ICore controller){
        this.controller = controller;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy