blob: ab416e4161bb4a1c3a2e2a57af1b621ee05699fb [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;
18
19import org.apache.karaf.shell.commands.Argument;
20import org.apache.karaf.shell.commands.Command;
21import org.onosproject.cli.AbstractShellCommand;
22import org.onosproject.sdxl2.SdxL2Service;
23
24/**
pierventre3849e562016-05-11 11:47:32 +020025 * CLI to delete a named SDX-L2.
Pier Luigi Ventre0a023f42016-04-30 11:03:15 +020026 */
Carolina Fernandezad893432016-07-18 11:11:34 +020027@Command(scope = "sdxl2", name = "sdxl2-remove", description = "Deletes a SDX-L2")
Pier Luigi Ventre0a023f42016-04-30 11:03:15 +020028public class SdxL2RemoveCommand extends AbstractShellCommand {
29
Carolina Fernandezad893432016-07-18 11:11:34 +020030 @Argument(index = 0, name = "sdxl2name", description = "Name of SDX-L2",
Pier Luigi Ventre0a023f42016-04-30 11:03:15 +020031 required = true, multiValued = false)
Carolina Fernandezad893432016-07-18 11:11:34 +020032 private String sdxl2 = null;
Pier Luigi Ventre0a023f42016-04-30 11:03:15 +020033
34 @Override
35 protected void execute() {
36 SdxL2Service networkService = get(SdxL2Service.class);
37 networkService.deleteSdxL2(sdxl2);
38 }
39}
40
41