blob: 1c628a6dcc7d5207697ee2e586fc7b0301f91314 [file] [log] [blame]
Saurav Das2d3777a2020-08-07 18:48:51 -07001/*
Joey Armstrong7f6d6d22023-01-09 17:09:50 -05002 * Copyright 2021-2023 Open Networking Foundation (ONF) and the ONF Contributors
Saurav Das2d3777a2020-08-07 18:48:51 -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 */
16
17package org.opencord.olt.cli;
18
19import org.apache.karaf.shell.api.action.Command;
20import org.apache.karaf.shell.api.action.lifecycle.Service;
21import org.onosproject.cli.AbstractShellCommand;
Saurav Das2d3777a2020-08-07 18:48:51 -070022/**
Matteo Scandoloaa2adde2021-09-13 12:45:32 -070023 * Shows failed subscribers on an OLTs.
Saurav Das2d3777a2020-08-07 18:48:51 -070024 */
25@Service
26@Command(scope = "onos", name = "volt-failed-subscribers",
Matteo Scandoloaa2adde2021-09-13 12:45:32 -070027 description = "Shows subscribers that failed provisioning")
Saurav Das2d3777a2020-08-07 18:48:51 -070028public class ShowFailedSubscribersCommand extends AbstractShellCommand {
29
30 @Override
31 protected void doExecute() {
Matteo Scandoloaa2adde2021-09-13 12:45:32 -070032 // NOTE
33 // this command is still available purely for backward compatibility but whilst the old implementation
34 // had a limited number of retries available the new implementation will keep retrying.
35 print("Unimplemented");
Saurav Das2d3777a2020-08-07 18:48:51 -070036 }
37
Matteo Scandoloaa2adde2021-09-13 12:45:32 -070038}