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

org.opendaylight.snmp4sdn.shell.ReadDB 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.Argument;
import org.apache.karaf.shell.commands.Command;
import org.apache.karaf.shell.console.OsgiCommandSupport;
import org.opendaylight.snmp4sdn.ICore;

@Command(scope = "snmp4sdn", name = "ReadDB", description="Read the switch list file")
public class ReadDB extends OsgiCommandSupport{
    private ICore controller;

    @Argument(index=0, name="filepath", description="The file path of the switch list", required=true, multiValued=false)
    String filepath = null;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy