@Path(value="/check")
public interface IProductChecks
check(String)
and the last result can be retrieved
with lastResult(String)
.Modifier and Type | Method and Description |
---|---|
java.util.Set<java.lang.String> |
availableChecks()
Returns the list of executed check names.
|
TaskRef |
check(java.lang.String checkName)
Starts asynchronously a product check with the given name.
|
CheckResult |
lastResult(java.lang.String checkName)
Returns the result of the last execution of a given check
|
@GET java.util.Set<java.lang.String> availableChecks()
@GET @Path(value="{checkName}") CheckResult lastResult(@PathParam(value="checkName") java.lang.String checkName)
checkName
- @POST @Path(value="{checkName}") TaskRef check(@PathParam(value="checkName") java.lang.String checkName)
checkName
- the name of the product check to startCopyright © 2021. All Rights Reserved.