blob: df3185696917d34748a298ec1fb9933efc043fc4 [file] [log] [blame]
Pier Luigi Ventre0a023f42016-04-30 11:03:15 +02001/*
2 * Copyright 2016-present Open Networking Laboratory
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 */
16
17package org.onosproject.sdxl2.cli.completer;
18
19import org.apache.karaf.shell.console.Completer;
20import org.apache.karaf.shell.console.completer.StringsCompleter;
21import org.onosproject.cli.AbstractShellCommand;
22import org.onosproject.sdxl2.SdxL2Service;
23
24import java.util.List;
25
26/**
Carolina Fernandezad893432016-07-18 11:11:34 +020027 * Completes name for SDX-L2.
Pier Luigi Ventre0a023f42016-04-30 11:03:15 +020028 */
29public class SdxL2NameCompleter implements Completer {
30
31 @Override
32 public int complete(String buffer, int cursor, List<String> candidates) {
33 StringsCompleter delegate = new StringsCompleter();
34 SdxL2Service service = AbstractShellCommand.get(SdxL2Service.class);
35 delegate.getStrings().addAll(service.getSdxL2s());
36 return delegate.complete(buffer, cursor, candidates);
37 }
38}