-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[backend/frontend] Adapt code base to manage the installation of mult…
…iples agents - chunk 2 (#1860)(#2151)(#2233) Co-authored-by: Damien Goujard <damien.goujard@filigran.io>
- Loading branch information
1 parent
9d9a1b4
commit 3374937
Showing
55 changed files
with
1,342 additions
and
1,452 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
openbas-api/src/main/java/io/openbas/executors/ExecutorContextService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package io.openbas.executors; | ||
|
||
import io.openbas.database.model.Agent; | ||
import io.openbas.database.model.Endpoint; | ||
import io.openbas.database.model.Inject; | ||
import io.openbas.rest.exception.AgentException; | ||
|
||
public abstract class ExecutorContextService { | ||
|
||
public abstract void launchExecutorSubprocess(Inject inject, Endpoint assetEndpoint, Agent agent) | ||
throws AgentException; | ||
} |
2 changes: 1 addition & 1 deletion
2
...openbas/integrations/ExecutorService.java → ...io/openbas/executors/ExecutorService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.