| 4 | import java.util.HashMap; |
| 5 | |
| 6 | public class Payload { |
| 7 | public HashMap<String, String> payload_info = new HashMap(); |
| 8 | public HashMap<String, String> payload_args = new HashMap(); |
| 9 | |
| 10 | |
| 11 | public Result test() throws Exception{ |
| 12 | return null; |
| 13 | }; |
| 14 | |
| 15 | public Result execution() throws Exception{ |
| 16 | return null; |
| 17 | }; |
| 18 | } |
nothing calls this directly
no outgoing calls
no test coverage detected