/**
  * Sets the login behavior for the session that will be opened. If null is specified, the default
  * ({@link SessionLoginBehavior SessionLoginBehavior.SSO_WITH_FALLBACK} will be used.
  *
  * @param loginBehavior The {@link SessionLoginBehavior SessionLoginBehavior} that specifies what
  *     behaviors should be attempted during authorization.
  */
 public void setLoginBehavior(SessionLoginBehavior loginBehavior) {
   properties.setLoginBehavior(loginBehavior);
 }