Interface NavBuilder.NavigationStep<B extends NavBuilder.NavigationStep<B>>

All Superinterfaces:
NavBuilder.Builder<B>
All Known Subinterfaces:
NavBuilder.GettingStarted, NavBuilder.Login
Enclosing interface:
NavBuilder

public static interface NavBuilder.NavigationStep<B extends NavBuilder.NavigationStep<B>> extends NavBuilder.Builder<B>
Builds URL for the with an option of adding "next" as a query parameter with the current request url or the passed in url
  • Method Details

    • next

      @Nonnull B next()
      Add "next" as a query parameter with the current relative request url as it value.
      Returns:
      this builder instance
    • next

      @Nonnull B next(@Nonnull String url)
      Add "next" as a query parameter with url as the value.
      Parameters:
      url - the url to add as the next query parameter
      Returns:
      this builder instance