blob: ce7f51e9cc3ef25431c66ed3de4ac3e481b6cf27 [file] [log] [blame]
Charles Chanf38aca72016-02-18 13:40:18 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Charles Chanf38aca72016-02-18 13:40:18 -08003 *
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.cli.net;
17
18import com.google.common.collect.Lists;
Ray Milkey0068fd02018-10-11 15:45:39 -070019import org.apache.karaf.shell.api.action.lifecycle.Service;
Charles Chanf38aca72016-02-18 13:40:18 -080020import org.onosproject.cli.AbstractChoicesCompleter;
21import org.onosproject.net.group.Group;
22
23import java.util.List;
24
25/**
26 * Group status completer.
27 */
Ray Milkey0068fd02018-10-11 15:45:39 -070028@Service
Charles Chanf38aca72016-02-18 13:40:18 -080029public class GroupStatusCompleter extends AbstractChoicesCompleter {
30 @Override
31 protected List<String> choices() {
32 List<String> strings = Lists.newArrayList();
33 for (Group.GroupState groupState : Group.GroupState.values()) {
Saurav Das59232cf2016-04-27 18:35:50 -070034 strings.add(groupState.toString().toLowerCase());
Charles Chanf38aca72016-02-18 13:40:18 -080035 }
36 strings.add(GroupsListCommand.ANY);
37 return strings;
38 }
39}