(String portalName)
| 318 | } |
| 319 | |
| 320 | private Portal getSafePortal(String portalName) { |
| 321 | Portal portal = portals.get(portalName); |
| 322 | if (portal == null) { |
| 323 | throw new IllegalArgumentException("Cannot find portal: " + portalName); |
| 324 | } |
| 325 | return portal; |
| 326 | } |
| 327 | |
| 328 | public CoordinatorSessionSettings sessionSettings() { |
| 329 | return sessionSettings; |
no test coverage detected