Refactor TestController to use ResponseEntity<String> in RevEngApplication method
This commit is contained in:
@@ -122,7 +122,7 @@ public class TestController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@PostMapping("/revenginnerapplication")
|
@PostMapping("/revenginnerapplication")
|
||||||
public ResponseEntity<Object> RevEngApplication(@RequestBody ApolloParseRequestDTO apolloParseRequestDTO){
|
public ResponseEntity<String> RevEngApplication(@RequestBody ApolloParseRequestDTO apolloParseRequestDTO){
|
||||||
reModuleService.callReverseEngModules(apolloParseRequestDTO);
|
reModuleService.callReverseEngModules(apolloParseRequestDTO);
|
||||||
return ResponseEntity.accepted().body("Request to reverse engineering application is being processed");
|
return ResponseEntity.accepted().body("Request to reverse engineering application is being processed");
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user