Package feign
Annotation Type Param
-
@Retention(RUNTIME) @Target(PARAMETER) public @interface Param
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description java.lang.StringvalueThe name of the template parameter.
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description booleanencodedSpecifies whether argument is already encoded The value is ignored for headers (headers are never encoded)java.lang.Class<? extends Param.Expander>expanderHow to expand the value of this parameter, ifParam.ToStringExpanderisn't adequate.
-
-
-
-
expander
java.lang.Class<? extends Param.Expander> expander
How to expand the value of this parameter, ifParam.ToStringExpanderisn't adequate.- Default:
- feign.Param.ToStringExpander.class
-
-
-
encoded
boolean encoded
Specifies whether argument is already encoded The value is ignored for headers (headers are never encoded)- See Also:
QueryMap.encoded()
- Default:
- false
-
-