public class UnscheduleFirmwareUpdateRequestExecutor extends RequestExecutor<java.lang.String>
FirmwaresApi. Use this class if you want to unschedule
 firmware update through fluent API in chained fashion, for example:
 
   
   KontaktCloud kontaktCloud = KontaktCloudFactory.create();
   kontaktCloud.firmwares().unScheduleUpdate()
      .forDevices("4DgT", "8JkU")
      .execute();
   
 
 Keep in mind that devices must be specified so invocation of forDevices method is mandatory.
 Otherwise an exception will be thrown.| Constructor and Description | 
|---|
| UnscheduleFirmwareUpdateRequestExecutor(FirmwaresService firmwaresService)Constructs request executor initialized with corresponding service class. | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | execute()Executes created request synchronously. | 
| void | execute(CloudCallback<java.lang.String> callback)Executes created request asynchronously and invokes callback with the result. | 
| UnscheduleFirmwareUpdateRequestExecutor | forDevices(java.util.List<java.lang.String> deviceUniqueIds)Specifies devices. | 
| UnscheduleFirmwareUpdateRequestExecutor | forDevices(java.lang.String... deviceUniqueIds)Specifies devices. | 
public UnscheduleFirmwareUpdateRequestExecutor(FirmwaresService firmwaresService)
firmwaresService - the firmwares API service.public UnscheduleFirmwareUpdateRequestExecutor forDevices(java.lang.String... deviceUniqueIds)
deviceUniqueIds - the device unique identifiers.public UnscheduleFirmwareUpdateRequestExecutor forDevices(java.util.List<java.lang.String> deviceUniqueIds)
deviceUniqueIds - the device unique identifiers.public java.lang.String execute()
                         throws java.io.IOException,
                                KontaktCloudException
execute in class RequestExecutor<java.lang.String>java.io.IOException - exceptionKontaktCloudException - exceptionpublic void execute(CloudCallback<java.lang.String> callback)
execute in class RequestExecutor<java.lang.String>callback - the callback object.