Class ProgressResource
java.lang.Object
dev.getelements.elements.rest.mission.ProgressResource
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncreateProgress
(Progress progressToBeCreated) void
deleteProgress
(String progressId) getProgress
(int offset, int count, List<String> tags, String search) getProgressByNameOrId
(String progressId) void
setProgressService
(ProgressService progressService) updateProgress
(Progress updatedProgress, String progressId)
-
Constructor Details
-
ProgressResource
public ProgressResource()
-
-
Method Details
-
createProgress
-
getProgress
@GET @Produces("application/json") public Pagination<Progress> getProgress(@QueryParam("offset") @DefaultValue("0") int offset, @QueryParam("count") @DefaultValue("20") int count, @QueryParam("tags") List<String> tags, @QueryParam("search") String search) -
getProgressTabular
-
getProgressByNameOrId
-
updateProgress
-
deleteProgress
@DELETE @Path("progress/{progressId}") @Produces("application/json") public void deleteProgress(@PathParam("progressId") String progressId) -
getProgressService
-
setProgressService
-