blob: 060c0a90f02b8891da6272ebcf71f042e7287fef [file] [log] [blame]
Charles Chanf38aca72016-02-18 13:40:18 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
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;
19import org.onosproject.cli.AbstractChoicesCompleter;
20import org.onosproject.net.group.Group;
21
22import java.util.List;
23
24/**
25 * Group status completer.
26 */
27public class GroupStatusCompleter extends AbstractChoicesCompleter {
28 @Override
29 protected List<String> choices() {
30 List<String> strings = Lists.newArrayList();
31 for (Group.GroupState groupState : Group.GroupState.values()) {
Saurav Das59232cf2016-04-27 18:35:50 -070032 strings.add(groupState.toString().toLowerCase());
Charles Chanf38aca72016-02-18 13:40:18 -080033 }
34 strings.add(GroupsListCommand.ANY);
35 return strings;
36 }
37}