@RestController @RequestMapping(path="/version") public class VersionEndpoint extends Object
| 构造器和说明 |
|---|
VersionEndpoint() |
| 限定符和类型 | 方法和说明 |
|---|---|
org.springframework.http.ResponseEntity<?> |
clearAsync(String version) |
org.springframework.http.ResponseEntity<?> |
clearSync(String version) |
org.springframework.http.ResponseEntity<?> |
updateAsync(String version) |
org.springframework.http.ResponseEntity<?> |
updateSync(String version) |
org.springframework.http.ResponseEntity<List<String>> |
view() |
@RequestMapping(path="/update-async",
method=POST)
@ResponseBody
public org.springframework.http.ResponseEntity<?> updateAsync(@RequestBody
String version)
@RequestMapping(path="/update-sync",
method=POST)
@ResponseBody
public org.springframework.http.ResponseEntity<?> updateSync(@RequestBody
String version)
@RequestMapping(path="/clear-async",
method=POST)
@ResponseBody
public org.springframework.http.ResponseEntity<?> clearAsync(@RequestBody(required=false)
String version)
@RequestMapping(path="/clear-sync",
method=POST)
@ResponseBody
public org.springframework.http.ResponseEntity<?> clearSync(@RequestBody(required=false)
String version)
Copyright © 2020 Nepxion. All rights reserved.