/** * Copyright (c) 2014 Inocybe Technologies, and others. 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.controller.topologymanager.shell; import org.apache.felix.gogo.commands.Command; import org.apache.felix.gogo.commands.Argument; import org.apache.karaf.shell.console.OsgiCommandSupport; import org.opendaylight.controller.topologymanager.ITopologyManagerShell; @Command(scope = "topologymanager", name = "addUserLink", description="Adds user link") public class AddUserLink extends OsgiCommandSupport{ private ITopologyManagerShell topologyManager; @Argument(index=0, name="name", description="name", required=true, multiValued=false) String name = null; @Argument(index=1, name="ncStr1", description="ncStr1", required=true, multiValued=false) String ncStr1 = null; @Argument(index=2, name="ncStr2", description="ncStr2", required=true, multiValued=false) String ncStr2 = null; @Override protected Object doExecute() throws Exception { for(String p : topologyManager.addUserLink(name, ncStr1, ncStr2)) { System.out.println(p); } return null; } public void setTopologyManager(ITopologyManagerShell topologyManager){ this.topologyManager = topologyManager; } }