blob: c0802df6d5d00f87228b911121ef1667f7362c4f [file] [log] [blame]
Thomas Vachuskaf9e0d172015-04-12 08:29:14 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Thomas Vachuskaf9e0d172015-04-12 08:29:14 -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 */
Thomas Vachuskac40d4632015-04-09 16:55:03 -070016package org.onosproject.cli;
Thomas Vachuskaf9e0d172015-04-12 08:29:14 -070017
18import org.apache.felix.service.command.CommandSession;
19import org.apache.karaf.shell.console.CommandSessionHolder;
20import org.apache.karaf.shell.console.Completer;
21import org.apache.karaf.shell.console.completer.ArgumentCompleter;
22
23/**
24 * Abstract argument completer.
25 */
26public abstract class AbstractCompleter implements Completer {
27
28 /**
29 * Returns the argument list.
30 *
31 * @return argument list
32 */
33 protected ArgumentCompleter.ArgumentList getArgumentList() {
34 CommandSession session = CommandSessionHolder.getSession();
35 return (ArgumentCompleter.ArgumentList)
36 session.get(ArgumentCompleter.ARGUMENTS_LIST);
37 }
38
39}