Class JiraZephyrRepositoryServices


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

      • JiraZephyrRepositoryServices

        public JiraZephyrRepositoryServices()
    • Method Detail

      • init

        @PostConstruct
        public void init()
                  throws Exception
        Overrides:
        init in class step.core.deployment.AbstractStepServices
        Throws:
        Exception
      • 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