blob: d6e756653c27b7820fd787b278cbbdec164dbc49 [file] [log] [blame]
Brian O'Connor7cbbbb72016-04-09 02:13:23 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Brian O'Connor7cbbbb72016-04-09 02:13:23 -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 */
Michele Santuari05b882c2015-11-25 09:40:46 +010016package 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;
Michele Santuari05b882c2015-11-25 09:40:46 +010023import org.onosproject.net.EncapsulationType;
24
25import java.util.List;
26import java.util.SortedSet;
27
28/**
29 * Encapsulation type completer.
30 */
Ray Milkeyd84f89b2018-08-17 14:54:17 -070031@Service
Michele Santuari05b882c2015-11-25 09:40:46 +010032public class EncapTypeCompleter implements Completer {
33
34 @Override
Ray Milkeyd84f89b2018-08-17 14:54:17 -070035 public int complete(Session session, CommandLine commandLine, List<String> candidates) {
Michele Santuari05b882c2015-11-25 09:40:46 +010036 // Delegate string completer
37 StringsCompleter delegate = new StringsCompleter();
38 SortedSet<String> strings = delegate.getStrings();
39
40 for (EncapsulationType encapType : EncapsulationType.values()) {
41 strings.add(encapType.toString());
42 }
43
44 // Now let the completer do the work for figuring out what to offer.
Ray Milkeyd84f89b2018-08-17 14:54:17 -070045 return delegate.complete(session, commandLine, candidates);
Michele Santuari05b882c2015-11-25 09:40:46 +010046 }
47}