Guest User

Untitled

a guest
Mar 23rd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. @RestController
  2. public class DarsController {
  3.  
  4. @Autowired
  5. ParseService parser;
  6.  
  7. @Autowired
  8. DocumentFetcher documentFetcher;
  9.  
  10. @RequestMapping("/parse")
  11. public ProgramRequirements parseDarsFile(@RequestParam(value = "darsURL") String url) throws IOException {
  12. return parser.parse(documentFetcher.fetch(url));
  13. }
  14. }
Add Comment
Please, Sign In to add comment