blob: bd4cf31094e493e97c0c2ca485f789caeddc3ed3 [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
20import org.apache.karaf.shell.commands.Argument;
21import org.apache.karaf.shell.commands.Command;
22
23import org.onosproject.cli.AbstractShellCommand;
Mahesh Poojary S8e1670e2016-05-19 22:15:34 +053024import org.onosproject.incubator.net.tunnel.TunnelId;
Mahesh Poojary Sd7a36922016-04-01 16:11:14 +053025import org.onosproject.pce.pceservice.api.PceService;
26
27import org.slf4j.Logger;
28
29/**
30 * Supports deleting pce path.
31 */
32@Command(scope = "onos", name = "pce-delete-path", description = "Supports deleting pce path.")
33public class PceDeletePathCommand extends AbstractShellCommand {
34 private final Logger log = getLogger(getClass());
35
36 @Argument(index = 0, name = "id", description = "Path Id.", required = true, multiValued = false)
37 String id = null;
38
39 @Override
40 protected void execute() {
41 log.info("executing pce-delete-path");
42
43 PceService service = get(PceService.class);
44
Mahesh Poojary S8e1670e2016-05-19 22:15:34 +053045 if (!service.releasePath(TunnelId.valueOf(id))) {
46 error("Path deletion failed.");
47 return;
48 }
Mahesh Poojary Sd7a36922016-04-01 16:11:14 +053049 }
50}