Package step.repositories.jira.zephyr
Class JiraZephyrRepositoryServices
- java.lang.Object
-
- step.framework.server.AbstractServices<step.core.access.User>
-
- step.core.deployment.AbstractStepServices
-
- step.repositories.jira.zephyr.JiraZephyrRepositoryServices
-
@Singleton @Path("repositories/jira/zephyr") public class JiraZephyrRepositoryServices extends step.core.deployment.AbstractStepServices
-
-
Constructor Summary
Constructors Constructor Description JiraZephyrRepositoryServices()
-
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
-
-
-
-
Method Detail
-
init
@PostConstruct public void init() throws java.lang.Exception
- Overrides:
init
in classstep.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
-
-