Class LicenseManagerRestController


  • @RestController
    @RequestMapping("/license")
    public class LicenseManagerRestController
    extends Object
    • Method Detail

      • licenseData

        @RequestMapping(path="/licenseData",
                        method=GET,
                        produces="application/json")
        public jetbrains.buildServer.controllers.license.LicenseManagerRestController.LicenseData licenseData()
      • offlineKeys

        @RequestMapping(path="/offlineKeys",
                        method=GET,
                        produces="application/json")
        public List<jetbrains.buildServer.controllers.license.LicenseManagerRestController.OfflineKey> offlineKeys()
      • activateLicense

        @RequestMapping(path="/activateLicense",
                        method=POST)
        public org.springframework.http.ResponseEntity<String> activateLicense​(@RequestBody
                                                                               String license)
      • refreshLicense

        @RequestMapping(path="/refreshLicense",
                        method=POST)
        public org.springframework.http.ResponseEntity<String> refreshLicense()
      • deleteJwtLicense

        @RequestMapping(path="/deleteJwtLicense",
                        method=DELETE)
        public org.springframework.http.ResponseEntity<String> deleteJwtLicense()
      • hashedOfflineKeys

        @RequestMapping(path="/hashedOfflineKeys",
                        method=GET,
                        produces="application/json")
        public List<String> hashedOfflineKeys()
      • linkAgents

        @RequestMapping(path="/linkAgents",
                        method=POST)
        public org.springframework.http.ResponseEntity<String> linkAgents()