366 |
366 |
367 @return documentation URL of the device |
367 @return documentation URL of the device |
368 @rtype str |
368 @rtype str |
369 """ |
369 """ |
370 return "" |
370 return "" |
|
371 |
|
372 def hasFirmwareUrl(self): |
|
373 """ |
|
374 Public method to check, if the device has a configured firmware |
|
375 download URL. |
|
376 |
|
377 @return flag indicating a configured firmware download URL |
|
378 @rtype bool |
|
379 """ |
|
380 return bool(self.getFirmwareUrl()) |
|
381 |
|
382 def getFirmwareUrl(self): |
|
383 """ |
|
384 Public method to get the device firmware download URL. |
|
385 |
|
386 @return firmware download URL of the device |
|
387 @rtype str |
|
388 """ |
|
389 return "" |