Browse Source
We will use an eventbus to listen for "executed"/triggered ScanRequests and respond with tekton runID to check up on laterrefactor_future
3 changed files with 15 additions and 27 deletions
@ -0,0 +1,8 @@
|
||||
package com.redhat.pctsec.model; |
||||
|
||||
public class BrewScanRequest extends ScanRequest{ |
||||
@Override |
||||
public void executeScan() { |
||||
bus.<BrewScanRequest>requestAndForget("tekton", this); |
||||
} |
||||
} |
||||
Loading…
Reference in new issue