Class SubqueryResource
java.lang.Object
com.atlassian.greenhopper.web.AbstractResource
com.atlassian.greenhopper.web.rapid.view.SubqueryResource
@Path("subqueries")
@Consumes("application/json")
@Produces("application/json")
public class SubqueryResource
extends AbstractResource
-
Field Summary
Fields inherited from class com.atlassian.greenhopper.web.AbstractResource
authenticationContext, log
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionjakarta.ws.rs.core.Response
getSubquery
(Long rapidViewId) Get the Subquery for a given rapidView and keyjakarta.ws.rs.core.Response
updateSubquery
(Long rapidViewId, SubqueryEntry editModel) Update a Subquery given its id and the id of the rapid view it belongs toMethods inherited from class com.atlassian.greenhopper.web.AbstractResource
check, checkResult, createNoContentResponse, createOkResponse, createOkResponse, getUser, isGadgetRequest, nullSafe, response, responseWithoutAccessCheck
-
Constructor Details
-
SubqueryResource
-
-
Method Details
-
getSubquery
@GET @Path("{rapidViewId}") public jakarta.ws.rs.core.Response getSubquery(@PathParam("rapidViewId") Long rapidViewId) Get the Subquery for a given rapidView and key -
updateSubquery
@PUT @Path("{rapidViewId}") public jakarta.ws.rs.core.Response updateSubquery(@PathParam("rapidViewId") Long rapidViewId, SubqueryEntry editModel) Update a Subquery given its id and the id of the rapid view it belongs to
-