Class JiraZephyrRepositoryServices


  • @Singleton
    @Path("repositories/jira/zephyr")
    public class JiraZephyrRepositoryServices
    extends step.core.deployment.AbstractServices
    • Constructor Detail

      • JiraZephyrRepositoryServices

        public JiraZephyrRepositoryServices()
    • Method Detail

      • getProjects

        @GET
        @Path("/project/search")
        @Consumes("application/json")
        @Produces("application/json")
        public ProjectList getProjects()
      • getProjectVersions

        @GET
        @Path("/project/{id}/version/search")
        @Consumes("application/json")
        @Produces("application/json")
        public ProjectVersionList getProjectVersions​(@PathParam("id")
                                                     Integer projectId)
      • getCycles

        @GET
        @Consumes("application/json")
        @Path("/project/{id}/version/{versionId}/cycle/search")
        public CycleList getCycles​(@PathParam("id")
                                   Integer projectId,
                                   @PathParam("versionId")
                                   Integer versionId)
                            throws Exception
        Throws:
        Exception