Class TokenList

java.lang.Object
org.kohsuke.stapler.TokenList

public final class TokenList extends Object
Tokenized path portion of the URL. For example "foo/bar/zot" is treated as ["foo","bar","zot"]
Author:
Kohsuke Kawaguchi
  • Field Details

    • tokens

      public final String[] tokens
      URL-decoded tokens.
    • rawTokens

      public final String[] rawTokens
      Like tokens but before decoding.
    • idx

      public int idx
      Index of the next token.
    • endsWithSlash

      public final boolean endsWithSlash
      If the request URL ends with the path separator.
  • Method Details