blob: f62493dc98c361621808e842abc47fb807ea8356 [file] [log] [blame]
David K. Bainbridgeeda2b052017-07-12 09:41:04 -07001/*
Brian O'Connor180c1092017-08-03 22:46:14 -07002 * Copyright 2017-present Open Networking Foundation
David K. Bainbridgeeda2b052017-07-12 09:41:04 -07003 *
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.opencord.sadis.cli;
17
Carmelo Cascone34059852019-09-30 19:33:00 -070018import org.apache.karaf.shell.api.action.Argument;
19import org.apache.karaf.shell.api.action.Command;
20import org.apache.karaf.shell.api.action.lifecycle.Service;
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070021import org.onosproject.cli.AbstractShellCommand;
Gamze Abaka1e5ccf52018-07-02 11:59:03 +000022import org.opencord.sadis.BaseInformationService;
23import org.opencord.sadis.SadisService;
Deepa vaddireddy386f38b2017-08-02 06:24:01 +000024import org.opencord.sadis.SubscriberAndDeviceInformation;
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070025
26/**
27 * Subscriber And Device Information Service CLI.
28 */
Carmelo Cascone34059852019-09-30 19:33:00 -070029@Service
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070030@Command(scope = "onos", name = "sadis", description = "Subscriber And Device Information Service CLI command")
31public class SubscriberGetCommand extends AbstractShellCommand {
32
33 @Argument(index = 0, name = "ID", description = "subscriber ID", required = true, multiValued = false)
34 String id;
35
Gamze Abaka1e5ccf52018-07-02 11:59:03 +000036 private SadisService sadisService = get(SadisService.class);
37 private BaseInformationService<SubscriberAndDeviceInformation> service = sadisService.getSubscriberInfoService();
Deepa vaddireddy386f38b2017-08-02 06:24:01 +000038
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070039 @Override
Carmelo Cascone34059852019-09-30 19:33:00 -070040 protected void doExecute() {
Gamze Abaka1e5ccf52018-07-02 11:59:03 +000041 SubscriberAndDeviceInformation info = service.get(id);
Deepa vaddireddy386f38b2017-08-02 06:24:01 +000042 if (info != null) {
43 print(info.toString());
44 } else {
45 print("Subscriber not found");
46 }
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070047 }
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070048}