blob: 2226e10f0544635e557d5a103755cd780670d57f [file] [log] [blame]
Thomas Vachuskae02e11c2014-11-24 16:13:52 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
Thomas Vachuskae02e11c2014-11-24 16:13:52 -08003 *
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 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.cli;
Thomas Vachuskae02e11c2014-11-24 16:13:52 -080017
Thomas Vachuskae02e11c2014-11-24 16:13:52 -080018import org.apache.karaf.shell.commands.Command;
Brian O'Connorabafb502014-12-02 22:26:20 -080019import org.onosproject.mastership.MastershipAdminService;
Thomas Vachuskae02e11c2014-11-24 16:13:52 -080020
21/**
22 * Forces device mastership rebalancing.
23 */
24@Command(scope = "onos", name = "balance-masters",
25 description = "Forces device mastership rebalancing")
26public class BalanceMastersCommand extends AbstractShellCommand {
27
28 @Override
29 protected void execute() {
Thomas Vachuska1e68bdd2014-11-29 13:53:10 -080030 get(MastershipAdminService.class).balanceRoles();
Thomas Vachuskae02e11c2014-11-24 16:13:52 -080031 }
32
33}