Package step.plugins.cypress
Class CypressServices
- java.lang.Object
-
- step.plugins.cypress.CypressServices
-
@Singleton @Path("cypress") public class CypressServices extends Object
-
-
Constructor Summary
Constructors Constructor Description CypressServices()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
next(String sessionId)
void
report(String sessionId, ExecutionReport report)
void
start(String sessionId)
-
-
-
Method Detail
-
start
@POST @Consumes("application/json") @Path("/{id}/start") public void start(@PathParam("id") String sessionId)
-
next
@POST @Consumes("application/json") @Path("/{id}/next") public String next(@PathParam("id") String sessionId) throws InterruptedException
- Throws:
InterruptedException
-
report
@POST @Consumes("application/json") @Path("/{id}/report") public void report(@PathParam("id") String sessionId, ExecutionReport report) throws InterruptedException
- Throws:
InterruptedException
-
-