blob: e4a6cccef945ebb3dd24d2e342ade8a6eb5ca563 [file] [log] [blame]
Mahesh Poojary Sd7a36922016-04-01 16:11:14 +05301/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Mahesh Poojary Sd7a36922016-04-01 16:11:14 +05303 *
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.pce.cli;
17
18import static org.slf4j.LoggerFactory.getLogger;
19
Ray Milkey86ad7bb2018-09-27 12:32:28 -070020import org.apache.karaf.shell.api.action.Argument;
21import org.apache.karaf.shell.api.action.Command;
Mahesh Poojary Sd7a36922016-04-01 16:11:14 +053022
Ray Milkey7a2dee52018-09-28 10:58:28 -070023import org.apache.karaf.shell.api.action.lifecycle.Service;
Mahesh Poojary Sd7a36922016-04-01 16:11:14 +053024import org.onosproject.cli.AbstractShellCommand;
Mahesh Poojary S8e1670e2016-05-19 22:15:34 +053025import org.onosproject.incubator.net.tunnel.TunnelId;
Mahesh Poojary Sd7a36922016-04-01 16:11:14 +053026import org.onosproject.pce.pceservice.api.PceService;
27
28import org.slf4j.Logger;
29
30/**
31 * Supports deleting pce path.
32 */
Ray Milkey7a2dee52018-09-28 10:58:28 -070033@Service
Mahesh Poojary Sd7a36922016-04-01 16:11:14 +053034@Command(scope = "onos", name = "pce-delete-path", description = "Supports deleting pce path.")
35public class PceDeletePathCommand extends AbstractShellCommand {
36 private final Logger log = getLogger(getClass());
37
38 @Argument(index = 0, name = "id", description = "Path Id.", required = true, multiValued = false)
39 String id = null;
40
41 @Override
Ray Milkey86ad7bb2018-09-27 12:32:28 -070042 protected void doExecute() {
Mahesh Poojary Sd7a36922016-04-01 16:11:14 +053043 log.info("executing pce-delete-path");
44
45 PceService service = get(PceService.class);
46
Mahesh Poojary S8e1670e2016-05-19 22:15:34 +053047 if (!service.releasePath(TunnelId.valueOf(id))) {
48 error("Path deletion failed.");
49 return;
50 }
Mahesh Poojary Sd7a36922016-04-01 16:11:14 +053051 }
52}