@GET
 @Path("/structure")
 @Produces(MediaType.APPLICATION_JSON)
 public List<CentroCusto> findStructure() {
   try {
     init();
     return centroCustoService.findStructure();
   } catch (Exception ex) {
     throw new WebApplicationException(getMessageError(ex.getMessage()));
   }
 }