All pastes #2466999 Raw Edit

Miscellany

public unlisted java v1 · immutable
#2466999 ·published 2013-10-15 15:57 UTC
rendered paste body
       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;             }                     }