blob: a72ba57a996ba34e405225b55ecc9302e802fbcd [file] [log] [blame]
Thomas Vachuska7d693f52014-10-21 19:17:57 -07001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
Brian O'Connora4cab072014-10-03 18:46:39 -070019package org.onlab.onos.cli.net;
20
21import org.apache.karaf.shell.commands.Argument;
22import org.apache.karaf.shell.commands.Command;
23import org.onlab.onos.cli.AbstractShellCommand;
24import org.onlab.onos.net.intent.Intent;
25import org.onlab.onos.net.intent.IntentId;
26import org.onlab.onos.net.intent.IntentService;
27
Thomas Vachuska4926c1b2014-10-21 00:44:10 -070028import java.math.BigInteger;
29
Brian O'Connora4cab072014-10-03 18:46:39 -070030/**
31 * Removes host-to-host connectivity intent.
32 */
tom6db1f0a2014-10-07 09:12:29 -070033@Command(scope = "onos", name = "remove-intent",
34 description = "Removes the specified intent")
35public class IntentRemoveCommand extends AbstractShellCommand {
Brian O'Connora4cab072014-10-03 18:46:39 -070036
37 @Argument(index = 0, name = "id", description = "Intent ID",
38 required = true, multiValued = false)
39 String id = null;
40
41 @Override
42 protected void execute() {
43 IntentService service = get(IntentService.class);
44
Thomas Vachuska4926c1b2014-10-21 00:44:10 -070045 if (id.startsWith("0x")) {
Brian O'Connora4cab072014-10-03 18:46:39 -070046 id = id.replaceFirst("0x", "");
47 }
Brian O'Connora4cab072014-10-03 18:46:39 -070048
Thomas Vachuska4926c1b2014-10-21 00:44:10 -070049 IntentId intentId = IntentId.valueOf(new BigInteger(id, 16).longValue());
Brian O'Connora4cab072014-10-03 18:46:39 -070050 Intent intent = service.getIntent(intentId);
51 if (intent != null) {
52 service.withdraw(intent);
53 }
54 }
55}