T
- the type of the input objectD
- the type of the domain objectpublic interface InputConverter<T,D>
The input should be a type that is only used in the REST layer of the application and which represents the data structure to be send by the consumer. This is typically a POJO containing Jackson annotations if needed.
Modifier and Type | Method and Description |
---|---|
D |
convert(T input)
Converts the given input into a domain object.
|