| 91 | } |
| 92 | |
| 93 | bool SignalDetectorPlugin::getTopic(const String& topic, JsonObject& value) const |
| 94 | { |
| 95 | bool isSuccessful = false; |
| 96 | |
| 97 | if (true == topic.equals(TOPIC_CONFIG)) |
| 98 | { |
| 99 | getConfiguration(value); |
| 100 | isSuccessful = true; |
| 101 | } |
| 102 | |
| 103 | return isSuccessful; |
| 104 | } |
| 105 | |
| 106 | bool SignalDetectorPlugin::setTopic(const String& topic, const JsonObjectConst& value) |
| 107 | { |
nothing calls this directly
no outgoing calls
no test coverage detected