Class DependencyExemptionController
- java.lang.Object
-
- jetbrains.buildServer.controllers.DependencyExemptionController
-
@RestController @RequestMapping("/dependencies/exemptions") public class DependencyExemptionController extends Object
-
-
Constructor Summary
Constructors Constructor Description DependencyExemptionController(DependencyExemptionManager dependencyExemptionManager, ProjectManagerEx projectManager)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.springframework.http.ResponseEntity<String>
addBuildTypeExemption(String sourceId, String destinationId)
org.springframework.http.ResponseEntity<String>
addProjectExemption(String sourceId, String destinationId)
org.springframework.http.ResponseEntity<String>
removeBuildTypeExemption(String sourceId, String destinationId)
org.springframework.http.ResponseEntity<String>
removeProjectExemption(String sourceId, String destinationId)
-
-
-
Constructor Detail
-
DependencyExemptionController
public DependencyExemptionController(@NotNull DependencyExemptionManager dependencyExemptionManager, @NotNull ProjectManagerEx projectManager)
-
-
Method Detail
-
addBuildTypeExemption
@RequestMapping(path="/addBuildTypeExemption", method=POST) public org.springframework.http.ResponseEntity<String> addBuildTypeExemption(@RequestParam String sourceId, @RequestParam String destinationId)
-
removeBuildTypeExemption
@RequestMapping(path="/removeBuildTypeExemption", method=POST) public org.springframework.http.ResponseEntity<String> removeBuildTypeExemption(@RequestParam String sourceId, @RequestParam String destinationId)
-
addProjectExemption
@RequestMapping(path="/addProjectExemption", method=POST) public org.springframework.http.ResponseEntity<String> addProjectExemption(@RequestParam String sourceId, @RequestParam String destinationId)
-
-