| 384 | *****************************************************************************/ |
| 385 | |
| 386 | void GrabViaRestPlugin::getConfiguration(JsonObject& jsonCfg) const |
| 387 | { |
| 388 | MutexGuard<MutexRecursive> guard(m_mutex); |
| 389 | |
| 390 | jsonCfg["method"] = m_method; |
| 391 | jsonCfg["url"] = m_url; |
| 392 | jsonCfg["filter"] = m_filter; |
| 393 | jsonCfg["iconFileId"] = m_iconFileId; |
| 394 | jsonCfg["format"] = m_format; |
| 395 | jsonCfg["multiplier"] = m_multiplier; |
| 396 | jsonCfg["offset"] = m_offset; |
| 397 | } |
| 398 | |
| 399 | bool GrabViaRestPlugin::setConfiguration(const JsonObjectConst& jsonCfg) |
| 400 | { |
nothing calls this directly
no outgoing calls
no test coverage detected