use of org.apache.openmeetings.db.entity.user.UserContact in project openmeetings by apache.
the class UserContactDao method updateContactStatus.
public Long updateContactStatus(Long id, boolean pending) {
try {
UserContact uc = get(id);
uc.setPending(pending);
update(uc);
return id;
} catch (Exception e) {
log.error("[updateContactStatus]", e);
}
return null;
}
Aggregations