blob: cf34629746244a9999aceaa2126c7c7cc030ac16 [file] [log] [blame]
Charles Chanc81c45b2016-10-20 17:02:44 -07001/*
2 * Copyright 2016-present Open Networking Laboratory
3 *
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
Saurav Das59232cf2016-04-27 18:35:50 -070017package org.onosproject.segmentrouting.cli;
18
19
20import org.apache.karaf.shell.commands.Command;
21import org.onosproject.cli.AbstractShellCommand;
22import org.onosproject.segmentrouting.SegmentRoutingService;
23
24/**
25 * Command to manually trigger routing and rule-population in the network.
26 *
27 */
28@Command(scope = "onos", name = "sr-reroute-network",
29 description = "Repopulate routing rules given current network state")
30public class RerouteNetworkCommand extends AbstractShellCommand {
31
32 @Override
33 protected void execute() {
34 SegmentRoutingService srService =
35 AbstractShellCommand.get(SegmentRoutingService.class);
36 srService.rerouteNetwork();
37 }
38
39}