blob: 6a04cfe1e2e63d3bfaf1d2c6ef99dc48662b4c8e [file] [log] [blame]
xueliang0e946fc2016-12-08 15:00:49 +09001/*
2 * Copyright 2016-present Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.drivers.fujitsu.cli;
17
18import org.apache.karaf.shell.commands.Argument;
19import org.apache.karaf.shell.commands.Command;
20import org.onosproject.cli.AbstractShellCommand;
21import org.onosproject.net.DeviceId;
22import org.onosproject.drivers.fujitsu.behaviour.VoltNniLinkConfig;
23import org.onosproject.net.driver.DriverHandler;
24import org.onosproject.net.driver.DriverService;
25
26/**
27 * Sets a parameter of a NNI link in vOLT.
28 */
29@Command(scope = "onos", name = "volt-setnnilink",
30 description = "Sets a parameter of a NNI link in vOLT")
31public class VoltSetNniLinkCommand extends AbstractShellCommand {
32
33 @Argument(index = 0, name = "uri", description = "Device ID",
34 required = true, multiValued = false)
35 String uri = null;
36
37 @Argument(index = 1, name = "target", description = "NNI link ID:parameter:value",
38 required = true, multiValued = false)
39 String target = null;
40
41 private DeviceId deviceId;
42
43 @Override
44 protected void execute() {
45 DriverService service = get(DriverService.class);
46 deviceId = DeviceId.deviceId(uri);
47 DriverHandler h = service.createHandler(deviceId);
48 VoltNniLinkConfig volt = h.behaviour(VoltNniLinkConfig.class);
49 boolean reply = volt.setNniLink(target);
50 if (!reply) {
51 print("No reply from %s", deviceId.toString());
52 }
53 }
54}