Interface ResultServiceAsync
-
- All Implemented Interfaces:
public interface ResultServiceAsync
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceResultServiceAsync.WithRawResponseA view of ResultServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
Modifier and Type Method Description abstract ResultServiceAsync.WithRawResponsewithRawResponse()Returns a view of this service that provides access to raw HTTP responses for each method. abstract ResultServiceAsyncwithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. CompletableFuture<String>sarif(String scanId)Get scan results in SARIF format CompletableFuture<String>sarif(String scanId, ResultSarifParams params, RequestOptions requestOptions)CompletableFuture<String>sarif(String scanId, ResultSarifParams params)abstract CompletableFuture<String>sarif(ResultSarifParams params, RequestOptions requestOptions)CompletableFuture<String>sarif(ResultSarifParams params)CompletableFuture<String>sarif(String scanId, RequestOptions requestOptions)-
-
Method Detail
-
withRawResponse
abstract ResultServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract ResultServiceAsync withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
sarif
CompletableFuture<String> sarif(String scanId)
Get scan results in SARIF format
-
sarif
CompletableFuture<String> sarif(String scanId, ResultSarifParams params, RequestOptions requestOptions)
-
sarif
CompletableFuture<String> sarif(String scanId, ResultSarifParams params)
-
sarif
abstract CompletableFuture<String> sarif(ResultSarifParams params, RequestOptions requestOptions)
-
sarif
CompletableFuture<String> sarif(ResultSarifParams params)
-
sarif
CompletableFuture<String> sarif(String scanId, RequestOptions requestOptions)
-
-
-
-