blob: 5f8a1366c224cd4042ca61a8741c5e7787eab118 [file] [log] [blame]
Akihiro Yamanouchi45122222016-07-15 13:13:11 +09001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Akihiro Yamanouchi45122222016-07-15 13:13:11 +09003 *
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
Ray Milkey86ad7bb2018-09-27 12:32:28 -070018import org.apache.karaf.shell.api.action.Argument;
19import org.apache.karaf.shell.api.action.Command;
Ray Milkey2a22ac62018-10-02 10:34:10 -070020import org.apache.karaf.shell.api.action.Completion;
Ray Milkey86ad7bb2018-09-27 12:32:28 -070021import org.apache.karaf.shell.api.action.lifecycle.Service;
Akihiro Yamanouchi45122222016-07-15 13:13:11 +090022import org.onosproject.cli.AbstractShellCommand;
Ray Milkey2a22ac62018-10-02 10:34:10 -070023import org.onosproject.cli.net.DeviceIdCompleter;
Akihiro Yamanouchi45122222016-07-15 13:13:11 +090024import org.onosproject.net.DeviceId;
25import org.onosproject.drivers.fujitsu.behaviour.VoltAlertConfig;
26import org.onosproject.net.driver.DriverHandler;
27import org.onosproject.net.driver.DriverService;
28
29/**
30 * Gets alert filter severity level in vOLT.
31 */
Ray Milkey86ad7bb2018-09-27 12:32:28 -070032@Service
Akihiro Yamanouchi45122222016-07-15 13:13:11 +090033@Command(scope = "onos", name = "volt-notification-alertfilter",
34 description = "Gets alert filter severity level in vOLT")
35public class VoltGetAlertFilterCommand extends AbstractShellCommand {
36
37 @Argument(index = 0, name = "uri", description = "Device ID",
38 required = true, multiValued = false)
Ray Milkey2a22ac62018-10-02 10:34:10 -070039 @Completion(DeviceIdCompleter.class)
Akihiro Yamanouchi45122222016-07-15 13:13:11 +090040 String uri = null;
41
42 private DeviceId deviceId;
43
44 @Override
Ray Milkey86ad7bb2018-09-27 12:32:28 -070045 protected void doExecute() {
Akihiro Yamanouchi45122222016-07-15 13:13:11 +090046 DriverService service = get(DriverService.class);
47 deviceId = DeviceId.deviceId(uri);
48 DriverHandler h = service.createHandler(deviceId);
49 VoltAlertConfig voltNe = h.behaviour(VoltAlertConfig.class);
50 String reply = voltNe.getAlertFilter();
51 if (reply != null) {
52 print("%s", reply);
53 } else {
54 print("No reply from %s", deviceId.toString());
55 }
56 }
57}