Interface Argument<D>
- All Known Implementing Classes:
BodyArgument,MethodArgument,UrlArgument
public interface Argument<D>
Pojo representing a primitive or complex data structure that informs the call. This can take the
form of the request body for a post, method call param when using the reflective flow, or
replacement for a url template value.
- See Also:
-
Method Summary
-
Method Details
-
getValue
D getValue()The primitive or complex value. For example, a simple String, a more complex JSON argument, or an Object of some universally available type.
-