Class JiraZephyrRepositoryServices


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

      • Fields inherited from class step.core.deployment.AbstractStepServices

        configuration, SESSION
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      CycleList getCycles​(java.lang.Integer projectId, java.lang.Integer versionId)  
      ProjectList getProjects()  
      ProjectVersionList getProjectVersions​(java.lang.Integer projectId)  
      void init()  
      • Methods inherited from class step.core.deployment.AbstractStepServices

        checkRightsOnBehalfOf, getAuthorizationManager, getContext, getExecutionRunnable, getObjectEnricher, getObjectFilter, getScheduler
      • Methods inherited from class step.framework.server.AbstractServices

        getAbstractContext, getHttpSession, getSession, getSession, invalidateSession, setHttpServletRequest, setSession
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • JiraZephyrRepositoryServices

        public JiraZephyrRepositoryServices()
    • Method Detail

      • init

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

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