@Override
public Role rawConvert() throws LoadModelException {
Role result = super.rawConvert();
EList<PermissionRefType> permission = getXmlElement().getPermission();
for (PermissionRefType refType : permission) {
PermissionType ref = refType.getRef();
EMFUtil.addPermission(result, new PermissionConverter(ref, getConverted()).convert());
}
return result;
}