blob: 907b3f8df2b53b20ab2563cf00c0e8c0f09cdcb6 [file] [log] [blame]
Ayaka Koshibe8d504a92014-09-22 17:07:36 -07001package org.onlab.onos.cluster;
2
3import org.onlab.onos.net.DeviceId;
4import org.onlab.onos.net.MastershipRole;
5
6/**
7 * Service for administering the inventory of device masterships.
8 */
9public interface MastershipAdminService {
10
11 /**
12 * Applies the current mastership role for the specified device.
13 *
14 * @param instance controller instance identifier
15 * @param deviceId device identifier
16 * @param role requested role
17 */
tome4729872014-09-23 00:37:37 -070018 void setRole(NodeId instance, DeviceId deviceId, MastershipRole role);
Ayaka Koshibe8d504a92014-09-22 17:07:36 -070019
20}