|
@@ -51,6 +51,21 @@ public interface Protocol {
|
|
|
*/
|
|
|
public Collection<Port> getDevicesWithRole(int role);
|
|
|
|
|
|
+ /**
|
|
|
+ * Returns the role of the given device, returns -1, if the Device is not part of the protocol
|
|
|
+ *
|
|
|
+ * @param device device which roles should be calculated
|
|
|
+ * @return role of the device, -1 if it has no role
|
|
|
+ */
|
|
|
+ public default int getRoleOfDevice(Port device){
|
|
|
+ if(device == null)
|
|
|
+ return -1;
|
|
|
+ for(int i = 0; i<getNumberOfRoles(); i++)
|
|
|
+ if(getDevicesWithRole(i).contains(device))
|
|
|
+ return i;
|
|
|
+ return -1;
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* Adds a new SmartDevice to the role, returns {@code true} if it was
|
|
|
* assigned successfully, {@code false} if it wasn't. (Either invalid role
|