blob: e833279d8ba3437e3393e35417509d15d37a113b [file] [log] [blame]
Satish Kba1c9122017-04-05 15:27:23 +05301/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Satish Kba1c9122017-04-05 15:27:23 +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;
Satish Kba1c9122017-04-05 15:27:23 +053022
23import org.onosproject.cli.AbstractShellCommand;
24import org.onosproject.pce.pceservice.api.PceService;
25
26import org.slf4j.Logger;
27
28/**
29 * Supports deleting pce load balancing path.
30 */
31@Command(scope = "onos", name = "pce-delete-load-balancing-path",
32 description = "Supports deleting pce load balancing path.")
33public class PceDeleteLoadBalancingPathCommand extends AbstractShellCommand {
34 private final Logger log = getLogger(getClass());
35
36 @Argument(index = 0, name = "name", description = "load balancing path name", required = true,
37 multiValued = false)
38 String name = null;
39
40 @Override
Ray Milkey86ad7bb2018-09-27 12:32:28 -070041 protected void doExecute() {
Satish Kba1c9122017-04-05 15:27:23 +053042 log.info("executing pce-delete-load-balancing-path");
43
44 PceService service = get(PceService.class);
45
46 if (!service.releasePath(name)) {
47 error("Path deletion failed.");
48 return;
49 }
50 }
51}