Uses of Class
io.quarkus.vertx.http.security.Form.Builder
Packages that use Form.Builder
-
Uses of Form.Builder in io.quarkus.vertx.http.security
Methods in io.quarkus.vertx.http.security that return Form.BuilderModifier and TypeMethodDescriptionstatic Form.BuilderForm.builder()Form.Builder.cookieDomain(String cookieDomain) Configures the 'domain' attribute for the session and location cookies.Form.Builder.cookieMaxAge(Duration cookieMaxAge) Configures the Max-Age attribute for the session cookie.Form.Builder.cookieName(String cookieName) Configures a name for the cookie that is used to store the persistent session.Form.Builder.cookiePath(String cookiePath) Configures the cookie path for the session and location cookies.Form.Builder.cookieSameSite(FormAuthConfig.CookieSameSite cookieSameSite) Configures the SameSite attribute for the session and location cookies.Form.Builder.encryptionKey(String encryptionKey) Configures the encryption key that is used to store persistent logins for the Form-based authentication.Configures the error page.Form.Builder.errorPageQueryParameters(String... queryParameters) Configures query parameters Quarkus passes through when redirecting requests to the error page.Form.Builder.httpOnlyCookie()This method is a shortcut forhttpOnlyCookie(true).Form.Builder.httpOnlyCookie(boolean httpOnlyCookie) Configures the HttpOnly attribute to prevent access to the cookie via JavaScript.Form.Builder.landingPage(String landingPage) Configures the landing page to redirect to if there is no saved page to redirect back to.Form.Builder.landingPageQueryParameters(String... queryParameters) Configures query parameters Quarkus passes through when redirecting requests to the landing page.Form.Builder.locationCookie(String locationCookie) Configures a name for the cookie that is used to redirect the user back to the location they want to access.Configures the login page.Form.Builder.loginPageQueryParameters(String... queryParameters) Configures query parameters Quarkus passes through when redirecting requests to the login page.Form.Builder.newCookieInterval(Duration newCookieInterval) Configures how old a cookie can get before it will be replaced with a new cookie with an updated timeout.Form.Builder.passwordParameter(String passwordParameter) Configures the password field name.Form.Builder.postLocation(String postLocation) Configures the post location.Configures the inactivity timeout.Form.Builder.usernameParameter(String usernameParameter) Configures the username field name.