|
|
@ -35,7 +35,7 @@ public interface OperationManager {
|
|
|
|
throws OperationManagementException;
|
|
|
|
throws OperationManagementException;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Method to retrieve the list of available operations to a device.
|
|
|
|
* Method to retrieve the list of all operations to a device.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @param deviceId DeviceIdentifier of the device
|
|
|
|
* @param deviceId DeviceIdentifier of the device
|
|
|
|
* @throws OperationManagementException If some unusual behaviour is observed while fetching the
|
|
|
|
* @throws OperationManagementException If some unusual behaviour is observed while fetching the
|
|
|
@ -44,4 +44,14 @@ public interface OperationManager {
|
|
|
|
public List<Operation> getOperations(DeviceIdentifier deviceId)
|
|
|
|
public List<Operation> getOperations(DeviceIdentifier deviceId)
|
|
|
|
throws OperationManagementException;
|
|
|
|
throws OperationManagementException;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Method to retrieve the list of available operations to a device.
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
* @param deviceId DeviceIdentifier of the device
|
|
|
|
|
|
|
|
* @throws OperationManagementException If some unusual behaviour is observed while fetching the
|
|
|
|
|
|
|
|
* operation list.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public List<Operation> getPendingOperations(DeviceIdentifier deviceId)
|
|
|
|
|
|
|
|
throws OperationManagementException;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|