@Path(value="selftests")
public interface SelfTestResource
| Modifier and Type | Method and Description |
|---|---|
void |
executeSelfTests(java.lang.String action) |
SelfTestCollection |
findSelfTests(java.lang.Integer start,
java.lang.Integer size) |
SelfTestData |
getSelfTest(java.lang.String selfTestID) |
@GET
@Produces(value={"application/xml","application/json"})
SelfTestCollection findSelfTests(@QueryParam(value="start")
java.lang.Integer start,
@QueryParam(value="size")
java.lang.Integer size)
@POST
@Produces(value={"application/xml","application/json"})
void executeSelfTests(@QueryParam(value="action")
java.lang.String action)
@GET
@Path(value="{selfTestID}")
@Produces(value={"application/xml","application/json"})
SelfTestData getSelfTest(@PathParam(value="selfTestID")
java.lang.String selfTestID)