Filtered representation of Full . Executors and Tasks are filtered based on whether the user is authorized to view them. TODO(bevers): Consider moving writers and other json-related code into a separate file.
| 95 | // TODO(bevers): Consider moving writers and other json-related |
| 96 | // code into a separate file. |
| 97 | struct FullFrameworkWriter { |
| 98 | FullFrameworkWriter( |
| 99 | const process::Owned<ObjectApprovers>& approvers, |
| 100 | const Framework* framework); |
| 101 | |
| 102 | void operator()(JSON::ObjectWriter* writer) const; |
| 103 | |
| 104 | const process::Owned<ObjectApprovers>& approvers_; |
| 105 | const Framework* framework_; |
| 106 | }; |
| 107 | |
| 108 | |
| 109 | struct SlaveWriter |
no outgoing calls
no test coverage detected