Class Executions
- java.lang.Object
-
- org.gcube.data.publishing.gCatFeeder.service.rest.Executions
-
@Path("execution") public class Executions extends Object
-
-
Constructor Summary
Constructors Constructor Description Executions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ExecutionDescriptorget(Long executionId)javax.ws.rs.core.ResponsegetAll()ExecutionDescriptorsubmit(javax.ws.rs.core.UriInfo info)
-
-
-
Method Detail
-
submit
@POST @Produces("application/json") public ExecutionDescriptor submit(@Context javax.ws.rs.core.UriInfo info)
-
getAll
@GET @Produces("application/json") public javax.ws.rs.core.Response getAll()
-
get
@GET @Produces("application/json") @Path("{executionId}") public ExecutionDescriptor get(@PathParam("executionId") Long executionId)
-
-