blob: 6c58020bd4f68b91ddd0bc527f53a5a7d58fd9c2 [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 */
18 void setRole(InstanceId instance, DeviceId deviceId, MastershipRole role);
19
20}