blob: d02ea89ef10de47e3c24bdaf7b558a04e2af098f [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 */
tom5f35f7c2014-09-08 18:38:19 -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;
tomb41d1ac2014-09-24 01:51:24 -070024import org.onlab.onos.cluster.NodeId;
Yuta HIGUCHI80912e62014-10-12 00:15:47 -070025import org.onlab.onos.mastership.MastershipAdminService;
tom5f35f7c2014-09-08 18:38:19 -070026import org.onlab.onos.net.MastershipRole;
tomb41d1ac2014-09-24 01:51:24 -070027
28import static org.onlab.onos.net.DeviceId.deviceId;
tom5f35f7c2014-09-08 18:38:19 -070029
30/**
31 * Sets role of the controller node for the given infrastructure device.
32 */
33@Command(scope = "onos", name = "device-role",
34 description = "Sets role of the controller node for the given infrastructure device")
35public class DeviceRoleCommand extends AbstractShellCommand {
36
37 @Argument(index = 0, name = "uri", description = "Device ID",
38 required = true, multiValued = false)
39 String uri = null;
40
tomb41d1ac2014-09-24 01:51:24 -070041 @Argument(index = 1, name = "node", description = "Node ID",
42 required = true, multiValued = false)
43 String node = null;
44
45 @Argument(index = 2, name = "role", description = "Mastership role",
tom5f35f7c2014-09-08 18:38:19 -070046 required = true, multiValued = false)
47 String role = null;
48
49 @Override
tom0872a172014-09-23 11:24:26 -070050 protected void execute() {
tomb41d1ac2014-09-24 01:51:24 -070051 MastershipAdminService service = get(MastershipAdminService.class);
tom5f35f7c2014-09-08 18:38:19 -070052 MastershipRole mastershipRole = MastershipRole.valueOf(role.toUpperCase());
tomb41d1ac2014-09-24 01:51:24 -070053 service.setRole(new NodeId(node), deviceId(uri), mastershipRole);
tom5f35f7c2014-09-08 18:38:19 -070054 }
55
56}