MCPcopy Create free account
hub / github.com/apache/nifi-minifi-cpp / get

Method get

libminifi/src/Configure.cpp:30–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28namespace minifi {
29
30bool Configure::get(const std::string& key, std::string& value) const {
31 bool found = getString(key, value);
32 if (decryptor_ && found && isEncrypted(key)) {
33 value = decryptor_->decrypt(value);
34 }
35 return found;
36}
37
38bool Configure::get(const std::string& key, const std::string& alternate_key, std::string& value) const {
39 if (get(key, value)) {

Callers 15

mainFunction · 0.45
getControllerServiceFunction · 0.45
printManifestFunction · 0.45
mainFunction · 0.45
processMethod · 0.45
TestPlanMethod · 0.45
addProcessorMethod · 0.45
getCurrentFlowFileMethod · 0.45
runMethod · 0.45
mainFunction · 0.45
updatePropertiesMethod · 0.45
TestFlowMethod · 0.45

Calls 4

getFunction · 0.85
log_warnMethod · 0.80
isEncryptedFunction · 0.50
decryptMethod · 0.45

Tested by 15

processMethod · 0.36
TestPlanMethod · 0.36
addProcessorMethod · 0.36
getCurrentFlowFileMethod · 0.36
runMethod · 0.36
mainFunction · 0.36
updatePropertiesMethod · 0.36
TestFlowMethod · 0.36
onTriggerMethod · 0.36
beginMethod · 0.36