packagepwc.taxtech.atms.controller;importorg.springframework.http.MediaType;importorg.springframework.web.bind.annotation.RequestMapping;importorg.springframework.web.bind.annotation.RequestMethod;importorg.springframework.web.bind.annotation.RestController;@RestController@RequestMapping("/api/v1/tempStorage/")publicclassTempStorageController{//TODO: only for index running ,should be query from db (neo)@RequestMapping(value="storage/{userId}/{name}",method=RequestMethod.GET,produces=MediaType.APPLICATION_JSON_UTF8_VALUE)publicStringgetTempStorage(StringuserId,Stringname){//TODO:only for running,should be query from db (neo)return"";}}