Total Complexity | 1 |
Total Lines | 10 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | /** |
||
29 | @RestController |
||
30 | public class AboutController { |
||
31 | |||
32 | @Value("${xapi.version:1.0.1}") |
||
33 | private String version; |
||
34 | |||
35 | @RequestMapping(value="/xAPI/about", method=RequestMethod.GET, produces = "application/json;charset=utf-8") |
||
36 | public About about() { |
||
37 | About about = new About(version); |
||
38 | return about; |
||
39 | } |
||
41 |