| 78 | } |
| 79 | |
| 80 | bool DateTimePlugin::getTopic(const String& topic, JsonObject& value) const |
| 81 | { |
| 82 | bool isSuccessful = false; |
| 83 | |
| 84 | if (true == topic.equals(TOPIC_CONFIG)) |
| 85 | { |
| 86 | getConfiguration(value); |
| 87 | isSuccessful = true; |
| 88 | } |
| 89 | |
| 90 | return isSuccessful; |
| 91 | } |
| 92 | |
| 93 | bool DateTimePlugin::setTopic(const String& topic, const JsonObjectConst& value) |
| 94 | { |
nothing calls this directly
no outgoing calls
no test coverage detected