- primitive Java types.
long,int,boolean, etc. should be specified as the type name. - primitive Java type wrappers. The full class name should be specified as the type name:
java.lang.Boolean,java.lang.Integer, etc. - string (
java.lang.String). - date (
java.util.Date). - UUID (
java.util.UUID). - BigDecimal (
java.math.BigDecimal) - entity (for POST requests only). The full class name should be specified as the type name,
e.g.
com.haulmont.cuba.security.entity.User. - entity collections (for POST requests only). The full class or collection interface name
should be specified as the type name, e.g.
java.util.List.

