public interface ParamLookup
Value foo = ctx.lookup()
.inQuery()
.inPath()
.get("foo");
Modifier and Type | Interface and Description |
---|---|
static interface |
ParamLookup.Stage
Fluent interface allowing to conveniently search context parameters
in multiple sources.
|
Modifier and Type | Method and Description |
---|---|
ParamLookup.Stage |
in(ParamSource source)
Adds the specified source to the search locations.
|
default ParamLookup.Stage |
inCookie()
Adds the cookie parameters to the search locations.
|
default ParamLookup.Stage |
inFlash()
Adds the flash parameters to the search locations.
|
default ParamLookup.Stage |
inForm()
Adds the form parameters to the search locations.
|
default ParamLookup.Stage |
inHeader()
Adds the header parameters to the search locations.
|
default ParamLookup.Stage |
inMultipart()
Adds the multipart parameters to the search locations.
|
default ParamLookup.Stage |
inPath()
Adds the path parameters to the search locations.
|
default ParamLookup.Stage |
inQuery()
Adds the query parameters to the search locations.
|
default ParamLookup.Stage |
inSession()
Adds the session parameters to the search locations.
|
ParamLookup.Stage in(ParamSource source)
source
- The source to add.default ParamLookup.Stage inPath()
default ParamLookup.Stage inHeader()
default ParamLookup.Stage inCookie()
default ParamLookup.Stage inFlash()
default ParamLookup.Stage inSession()
default ParamLookup.Stage inQuery()
default ParamLookup.Stage inForm()
default ParamLookup.Stage inMultipart()
Copyright © 2020. All rights reserved.