@PUT @Path("{grupoId}") @Consumes(MediaType.TEXT_XML) public ResponseMessage updateGrupo(@PathParam("grupoId") String grupoId, UIEntity entity) throws RegistroNoEncontradoException, NumberFormatException { Grupo grupo = Grupo.getGrupoById(Long.parseLong(grupoId)); grupo.setNombre(entity.get("nombre")); grupo.setDescripcion(entity.get("descripcion")); grupo.update(); return new ResponseMessage(true); }
@POST @Produces(MediaType.APPLICATION_XML) public List<UIEntity> insertGrupo(UIEntity entity) throws RegistroNoEncontradoException { if (entity.get("cursoId") == null || entity.get("nombre") == null) { return new ArrayList<UIEntity>(); } Curso curso = Curso.getCursoById(Long.parseLong(entity.get("cursoId"))); Grupo grupo = new Grupo(); grupo.setCurso(curso); grupo.setNombre(entity.get("nombre")); grupo.setOrden(Long.parseLong(entity.get("orden"))); grupo = grupo.insert(); return Collections.singletonList(UIEntity.toUI(grupo)); }