Miscellany
public unlisted java v1 · immutable public boolean deleteBox(Long id){ Boxes box = new Boxes(); box = entityManager.find(Boxes.class, id); if(box != null){ entityManager.remove(box); return true; }else{ return false; } }