| 37 | namespace core { |
| 38 | |
| 39 | ProcessContextBuilder::ProcessContextBuilder(const std::string &name, const minifi::utils::Identifier &uuid) |
| 40 | : core::CoreComponent(name, uuid) { |
| 41 | content_repo_ = std::make_shared<core::repository::FileSystemRepository>(); |
| 42 | configuration_ = std::make_shared<minifi::Configure>(); |
| 43 | } |
| 44 | |
| 45 | ProcessContextBuilder::ProcessContextBuilder(const std::string &name) |
| 46 | : core::CoreComponent(name) { |
nothing calls this directly
no outgoing calls
no test coverage detected