blob: 6efdaaaf17dff091132b680dc5cf0c449597ef25 [file] [log] [blame]
Charles Chan12a8a842020-02-14 13:23:57 -08001/*
2 * Copyright 2020-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 */
16
17package org.onosproject.segmentrouting.cli;
18
19import org.apache.karaf.shell.api.action.Command;
20import org.apache.karaf.shell.api.action.lifecycle.Service;
21import org.onosproject.cli.AbstractShellCommand;
22import org.onosproject.segmentrouting.phasedrecovery.api.PhasedRecoveryService;
23
24@Service
25@Command(scope = "onos", name = "sr-pr-list", description = "List current recovery phase of each device")
26
27public class PhasedRecoveryListCommand extends AbstractShellCommand {
28 @Override
29 protected void doExecute() {
30 PhasedRecoveryService prService = get(PhasedRecoveryService.class);
31 print(prService.getPhases().toString());
32 }
33}