use of joynr.infrastructure.DacTypes.MasterRegistrationControlEntry in project joynr by bmwcarit.
the class GlobalDomainAccessControlListEditorBean method updateMasterRegistrationControlEntry.
@Override
public Boolean updateMasterRegistrationControlEntry(MasterRegistrationControlEntry updatedMasterRce) {
CreateOrUpdateResult<MasterRegistrationControlEntry> result = masterRegistrationControlEntryManager.createOrUpdate(updatedMasterRce, ControlEntryType.MASTER);
if (result != null) {
MasterRegistrationControlEntry entry = result.getEntry();
globalDomainAccessControllerBean.doFireMasterRegistrationControlEntryChanged(result.getChangeType(), entry);
return true;
}
return false;
}
Aggregations