@RequestMapping(
     method = {RequestMethod.POST},
     value = "templates")
 public void novoFormulario(@RequestBody Template formulario)
     throws BussinessException, ValidationException {
   service.salvaTemplate(formulario);
 }