Class ExecutionServices


  • @Singleton
    @Path("executions")
    public class ExecutionServices
    extends AbstractServices
    • Constructor Detail

      • ExecutionServices

        public ExecutionServices()
    • Method Detail

      • getAll

        @GET
        @Produces("application/json")
        public java.util.List<Execution> getAll​(@QueryParam("skip")
                                                java.lang.Integer skip,
                                                @QueryParam("limit")
                                                java.lang.Integer limit)
      • get

        @GET
        @Path("/{id}")
        @Produces("application/json")
        public Execution get​(@PathParam("id")
                             java.lang.String id)
      • get

        @POST
        @Path("/search")
        public Execution get​(java.util.Map<java.lang.String,​java.lang.String> attributes)
      • getExecutionsByRepositoryObjectReference

        @POST
        @Path("/search/by/ref")
        @Produces("application/json")
        public java.util.List<Execution> getExecutionsByRepositoryObjectReference​(RepositoryObjectReference objectReference)
      • findByCritera

        @POST
        @Consumes("application/json")
        @Produces("application/json")
        @Path("/search/by/critera")
        public java.util.List<Execution> findByCritera​(FindByCriteraParam param)
      • getReportNodesByExecutionID

        @GET
        @Path("/{id}/reportnodes")
        @Produces("application/json")
        public java.util.List<ReportNode> getReportNodesByExecutionID​(@PathParam("id")
                                                                      java.lang.String executionID,
                                                                      @QueryParam("class")
                                                                      java.lang.String reportNodeClass,
                                                                      @QueryParam("limit")
                                                                      int limit)
      • save

        @POST
        @Produces("application/json")
        @Consumes("application/json")
        public Execution save​(Execution execution)
      • delete

        @DELETE
        @Path("/{id}")
        @Consumes("application/json")
        public void delete​(@PathParam("id")
                           java.lang.String id)