blob: c6e3a4f439af790513ab1c72231bc0a1a08d7958 [file] [log] [blame]
Gamze Abaka1e5ccf52018-07-02 11:59:03 +00001/*
2 * Copyright 2017-present Open Networking Foundation
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.opencord.sadis.cli;
17
Carmelo Cascone34059852019-09-30 19:33:00 -070018import org.apache.karaf.shell.api.action.lifecycle.Service;
19import org.apache.karaf.shell.api.action.Argument;
20import org.apache.karaf.shell.api.action.Command;
Gamze Abaka1e5ccf52018-07-02 11:59:03 +000021import org.onosproject.cli.AbstractShellCommand;
22import org.opencord.sadis.BandwidthProfileInformation;
23import org.opencord.sadis.BaseInformationService;
24import org.opencord.sadis.SadisService;
25
26/**
27 * Bandwidth profile information service CLI.
28 */
Carmelo Cascone34059852019-09-30 19:33:00 -070029@Service
Gamze Abaka1e5ccf52018-07-02 11:59:03 +000030@Command(scope = "onos", name = "bandwidthProfile", description = "Bandwidth profile information service CLI command")
31public class BandwidthProfileGetCommand extends AbstractShellCommand {
32
33 @Argument(index = 0, name = "ID", description = "bandwidthProfile ID", required = true, multiValued = false)
34 String id;
35
36 private SadisService sadisService = get(SadisService.class);
37 private BaseInformationService<BandwidthProfileInformation> service = sadisService.getBandwidthProfileService();
38
39 @Override
Carmelo Cascone34059852019-09-30 19:33:00 -070040 protected void doExecute() {
Gamze Abaka1e5ccf52018-07-02 11:59:03 +000041 BandwidthProfileInformation info = service.get(id);
42 if (info != null) {
43 print(info.toString());
44 } else {
45 print("Bandwidth profile not found");
46 }
47 }
48}