blob: 7082ece08cd5d5a6aead04839794767604540192 [file] [log] [blame]
Ray Milkeyd84f89b2018-08-17 14:54:17 -07001/*
2 * Copyright 2015-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 */
16package org.onosproject.cli2;
17
18import org.apache.karaf.shell.api.console.CommandLine;
19import org.apache.karaf.shell.api.console.Session;
20import org.apache.karaf.shell.support.completers.StringsCompleter;
21
22import java.util.List;
23import java.util.SortedSet;
24
25/**
26 * Abstraction of a completer with preset choices.
27 */
28public abstract class AbstractChoicesCompleter extends AbstractCompleter {
29
30 protected abstract List<String> choices();
31
32 @Override
33 public int complete(Session session, CommandLine commandLine, List<String> candidates) {
34 StringsCompleter delegate = new StringsCompleter();
35 SortedSet<String> strings = delegate.getStrings();
36 choices().forEach(strings::add);
37 return delegate.complete(session, commandLine, candidates);
38 }
39
40}