private boolean vldExist(Integer id, Integer siteId, WebErrors errors) {
if (errors.ifNull(id, "id")) {
return true;
}
CmsFriendlink entity = manager.findById(id);
if (errors.ifNotExist(entity, CmsFriendlink.class, id)) {
return true;
}
if (!entity.getSite().getId().equals(siteId)) {
errors.notInSite(CmsFriendlink.class, id);
return true;
}
return false;
}