blob: 00bc5b9ac1dd18f6b96658adcb5bb0d1a225af3a [file] [log] [blame]
Thomas Vachuska8e038eb2016-02-23 23:28:23 -08001/*
2 * Copyright 2016 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.provider.nil.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.provider.nil.NullProviders;
23
24import static org.onosproject.cli.UpDownCompleter.DOWN;
25import static org.onosproject.cli.UpDownCompleter.UP;
26
27/**
28 * Servers or repairs a simulated link.
29 */
30@Command(scope = "onos", name = "null-device",
31 description = "Severs or repairs a simulated link")
32public class NullDeviceCommand extends AbstractShellCommand {
33
34 @Argument(index = 0, name = "id", description = "Device identifier",
35 required = true, multiValued = false)
36 String id = null;
37
38 @Argument(index = 1, name = "cmd", description = "up/down",
39 required = true, multiValued = false)
40 String cmd = null;
41
42
43 @Override
44 protected void execute() {
45 NullProviders service = get(NullProviders.class);
46 DeviceId deviceId = DeviceId.deviceId(id);
47
48 if (cmd.equals(UP)) {
49 service.repairDevice(deviceId);
50 } else if (cmd.equals(DOWN)) {
51 service.failDevice(deviceId);
52 } else {
53 error("Illegal command %s; must be up or down", cmd);
54 }
55 }
56
57}