Class FakeJiraResource
- java.lang.Object
-
- org.apache.camel.quarkus.component.jira.it.FakeJiraResource
-
@Path("/jira/rest/api/latest") public class FakeJiraResource extends ObjectA set of stubbed service endpoints for the Jira REST API
-
-
Constructor Summary
Constructors Constructor Description FakeJiraResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.ws.rs.core.ResponsecreateIssue()javax.ws.rs.core.ResponsegetIssue(String id)javax.ws.rs.core.ResponsegetIssueType()
-
-
-
Method Detail
-
getIssueType
@Path("/issuetype") @GET public javax.ws.rs.core.Response getIssueType()
-
createIssue
@Path("/issue") @POST public javax.ws.rs.core.Response createIssue() throws URISyntaxException- Throws:
URISyntaxException
-
getIssue
@Path("/issue/{id}") @GET public javax.ws.rs.core.Response getIssue(@PathParam("id") String id) throws URISyntaxException- Throws:
URISyntaxException
-
-