blob: 3c85b71c7052bd57f9e83cf44f67ff2eb25c46f4 [file] [log] [blame]
Charles M.C. Chan2184de12015-04-26 02:24:53 +08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Charles M.C. Chan2184de12015-04-26 02:24:53 +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
Ray Milkeyd84f89b2018-08-17 14:54:17 -070018import org.apache.karaf.shell.api.console.CommandLine;
19import org.apache.karaf.shell.api.console.Completer;
20import org.apache.karaf.shell.api.action.lifecycle.Service;
21import org.apache.karaf.shell.api.console.Session;
22import org.apache.karaf.shell.support.completers.StringsCompleter;
Charles M.C. Chan2184de12015-04-26 02:24:53 +080023
24import java.util.List;
25import java.util.SortedSet;
26
27/**
28 * IPv6 extension header completer.
29 */
Ray Milkeyd84f89b2018-08-17 14:54:17 -070030@Service
Charles M.C. Chan2184de12015-04-26 02:24:53 +080031public class ExtHeaderCompleter implements Completer {
32 @Override
Ray Milkeyd84f89b2018-08-17 14:54:17 -070033 public int complete(Session session, CommandLine commandLine, List<String> candidates) {
Charles M.C. Chan2184de12015-04-26 02:24:53 +080034 // Delegate string completer
35 StringsCompleter delegate = new StringsCompleter();
36 SortedSet<String> strings = delegate.getStrings();
37
38 for (ExtHeader extHeader : ExtHeader.values()) {
39 strings.add(extHeader.toString());
40 }
41
42 // Now let the completer do the work for figuring out what to offer.
Ray Milkeyd84f89b2018-08-17 14:54:17 -070043 return delegate.complete(session, commandLine, candidates);
Charles M.C. Chan2184de12015-04-26 02:24:53 +080044 }
45
46}