blob: 3f10abc399fe6bc06f79c8989dc6a8a3cda77da4 [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.felix.service.command.CommandSession;
19import org.apache.karaf.shell.api.console.CommandLine;
20import org.apache.karaf.shell.api.console.Session;
21import org.apache.karaf.shell.api.console.Completer;
22import org.apache.karaf.shell.impl.action.command.ArgumentCompleter;
23import org.apache.karaf.shell.support.completers.StringsCompleter;
24
25import java.util.List;
26
27/**
28 * Abstract argument completer.
29 */
30public abstract class AbstractCompleter implements Completer {
31
32 @Override
33 public int complete(Session session, CommandLine commandLine, List<String> candidates) {
34 StringsCompleter delegate = new StringsCompleter();
35
36 return delegate.complete(session, commandLine, candidates);
37 }
38
39}