org.opendaylight.snmp4sdn.shell.ReadDB Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-shell Show documentation
Show all versions of plugin-shell Show documentation
Provide shell command for snmp4sdn plugin in Karaf
/**
* 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