@@ 297-312 (lines=16) @@ | ||
294 | ); |
|
295 | } |
|
296 | ||
297 | public function updateUseRaOption(InstitutionAuthorizationOption $useRaOption) |
|
298 | { |
|
299 | if ($this->useRaOption !== null |
|
300 | && $this->useRaOption->equals($useRaOption) |
|
301 | ) { |
|
302 | return; |
|
303 | } |
|
304 | ||
305 | $this->apply( |
|
306 | new UseRaOptionChangedEvent( |
|
307 | $this->institutionConfigurationId, |
|
308 | $this->institution, |
|
309 | $useRaOption |
|
310 | ) |
|
311 | ); |
|
312 | } |
|
313 | ||
314 | public function updateUseRaaOption(InstitutionAuthorizationOption $useRaaOption) |
|
315 | { |
|
@@ 314-329 (lines=16) @@ | ||
311 | ); |
|
312 | } |
|
313 | ||
314 | public function updateUseRaaOption(InstitutionAuthorizationOption $useRaaOption) |
|
315 | { |
|
316 | if ($this->useRaaOption !== null |
|
317 | && $this->useRaaOption->equals($useRaaOption) |
|
318 | ) { |
|
319 | return; |
|
320 | } |
|
321 | ||
322 | $this->apply( |
|
323 | new UseRaaOptionChangedEvent( |
|
324 | $this->institutionConfigurationId, |
|
325 | $this->institution, |
|
326 | $useRaaOption |
|
327 | ) |
|
328 | ); |
|
329 | } |
|
330 | ||
331 | public function updateSelectRaaOption(InstitutionAuthorizationOption $selectRaaOption) |
|
332 | { |
|
@@ 331-346 (lines=16) @@ | ||
328 | ); |
|
329 | } |
|
330 | ||
331 | public function updateSelectRaaOption(InstitutionAuthorizationOption $selectRaaOption) |
|
332 | { |
|
333 | if ($this->selectRaaOption !== null |
|
334 | && $this->selectRaaOption->equals($selectRaaOption) |
|
335 | ) { |
|
336 | return; |
|
337 | } |
|
338 | ||
339 | $this->apply( |
|
340 | new SelectRaaOptionChangedEvent( |
|
341 | $this->institutionConfigurationId, |
|
342 | $this->institution, |
|
343 | $selectRaaOption |
|
344 | ) |
|
345 | ); |
|
346 | } |
|
347 | ||
348 | public function updateAllowedSecondFactorList(AllowedSecondFactorList $allowedSecondFactorList) |
|
349 | { |