blob: f379286efb4a4cc4837f4a10c1dd01e0752cd964 [file] [log] [blame]
Jonathan Hart0bdf8372015-10-08 14:30:36 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Jonathan Hart0bdf8372015-10-08 14:30:36 -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 */
16
17package org.onosproject.cli.net;
18
Ray Milkeyd84f89b2018-08-17 14:54:17 -070019import org.apache.karaf.shell.api.action.Argument;
20import org.apache.karaf.shell.api.action.Command;
Ray Milkey0068fd02018-10-11 15:45:39 -070021import org.apache.karaf.shell.api.action.Completion;
Ray Milkeyd84f89b2018-08-17 14:54:17 -070022import org.apache.karaf.shell.api.action.lifecycle.Service;
Jonathan Hart0bdf8372015-10-08 14:30:36 -070023import org.onosproject.cli.AbstractShellCommand;
Ray Milkey0068fd02018-10-11 15:45:39 -070024import org.onosproject.cli.net.completer.InterfaceNameCompleter;
Ray Milkeyfacf2862017-08-03 11:58:29 -070025import org.onosproject.net.intf.InterfaceAdminService;
Jonathan Hart0bdf8372015-10-08 14:30:36 -070026import org.onosproject.net.ConnectPoint;
27
28/**
29 * Removes an interface configuration.
30 */
Ray Milkeyd84f89b2018-08-17 14:54:17 -070031@Service
Andreas Pantelopoulosb6a2f782016-11-12 17:29:42 +010032@Command(scope = "onos", name = "interface-remove",
Jonathan Hart0bdf8372015-10-08 14:30:36 -070033 description = "Removes a configured interface")
34public class InterfaceRemoveCommand extends AbstractShellCommand {
35
36 @Argument(index = 0, name = "connectPoint",
37 description = "Connect point of the interface",
38 required = true, multiValued = false)
Ray Milkey0068fd02018-10-11 15:45:39 -070039 @Completion(ConnectPointCompleter.class)
Jonathan Hart0bdf8372015-10-08 14:30:36 -070040 private String connectPoint = null;
41
Jonathan Hart7dbe6292015-11-10 08:33:17 -080042 @Argument(index = 1, name = "name",
43 description = "Interface name",
Jonathan Hart0bdf8372015-10-08 14:30:36 -070044 required = true, multiValued = false)
Ray Milkey0068fd02018-10-11 15:45:39 -070045 @Completion(InterfaceNameCompleter.class)
Jonathan Hart7dbe6292015-11-10 08:33:17 -080046 private String name = null;
Jonathan Hart0bdf8372015-10-08 14:30:36 -070047
48 @Override
Ray Milkeyd84f89b2018-08-17 14:54:17 -070049 protected void doExecute() {
Jonathan Hart0bdf8372015-10-08 14:30:36 -070050 InterfaceAdminService interfaceService = get(InterfaceAdminService.class);
51
Jonathan Hart7dbe6292015-11-10 08:33:17 -080052 boolean success = interfaceService.remove(
53 ConnectPoint.deviceConnectPoint(connectPoint), name);
54
55 if (success) {
56 print("Interface removed");
57 } else {
58 print("Unable to remove interface");
59 }
Jonathan Hart0bdf8372015-10-08 14:30:36 -070060 }
61
62}