Package com.atlassian.jira.rest.v2.issue
Class IssueSecuritySchemeResource
java.lang.Object
com.atlassian.jira.rest.v2.issue.IssueSecuritySchemeResource
@Path("issuesecurityschemes")
@Produces("application/json")
public class IssueSecuritySchemeResource
extends Object
REST resource that allows to view security schemes defined in the product.
- Since:
- 7.0
-
Constructor Summary
ConstructorsConstructorDescriptionIssueSecuritySchemeResource
(IssueSecuritySchemeService issueSecuritySchemeService, ResponseFactory responseFactory, JiraBaseUrls baseUrls, JiraAuthenticationContext jiraAuthenticationContext) -
Method Summary
Modifier and TypeMethodDescriptionjavax.ws.rs.core.Response
Returns the issue security scheme along with that are defined.javax.ws.rs.core.Response
Returns all issue security schemes that are defined.
-
Constructor Details
-
IssueSecuritySchemeResource
@Inject public IssueSecuritySchemeResource(IssueSecuritySchemeService issueSecuritySchemeService, ResponseFactory responseFactory, JiraBaseUrls baseUrls, JiraAuthenticationContext jiraAuthenticationContext)
-
-
Method Details
-
getIssueSecuritySchemes
@GET public javax.ws.rs.core.Response getIssueSecuritySchemes()Returns all issue security schemes that are defined.- Returns:
- an object containing a collection of issue security schemes
-
getIssueSecurityScheme
@GET @Path("{id}") public javax.ws.rs.core.Response getIssueSecurityScheme(@PathParam("id") Long id) Returns the issue security scheme along with that are defined.- Returns:
- an object containing a collection of issue security schemes
-