return emf.createEntityManager();
}
public void create(Attributepoint attributepoint) throws PreexistingEntityException, Exception {
if (attributepoint.getAttributepointPK() == null) {
attributepoint.setAttributepointPK(new AttributepointPK());
}
attributepoint.getAttributepointPK().setCharacterID(attributepoint.getCharacter().getId());
attributepoint.getAttributepointPK().setAttributeID(attributepoint.getAttribute().getId());
EntityManager em = null;
try {