Search in sources :

Example 1 with DoubleRestVariableConverter

use of com.plumdo.flow.rest.variable.DoubleRestVariableConverter in project plumdo-work by wengwh.

the class RestResponseFactory method initializeVariableConverters.

protected void initializeVariableConverters() {
    variableConverters.add(new StringRestVariableConverter());
    variableConverters.add(new IntegerRestVariableConverter());
    variableConverters.add(new LongRestVariableConverter());
    variableConverters.add(new ShortRestVariableConverter());
    variableConverters.add(new DoubleRestVariableConverter());
    variableConverters.add(new BooleanRestVariableConverter());
    variableConverters.add(new DateRestVariableConverter());
    variableConverters.add(new ListRestVariableConverter());
}
Also used : ShortRestVariableConverter(com.plumdo.flow.rest.variable.ShortRestVariableConverter) BooleanRestVariableConverter(com.plumdo.flow.rest.variable.BooleanRestVariableConverter) LongRestVariableConverter(com.plumdo.flow.rest.variable.LongRestVariableConverter) StringRestVariableConverter(com.plumdo.flow.rest.variable.StringRestVariableConverter) DoubleRestVariableConverter(com.plumdo.flow.rest.variable.DoubleRestVariableConverter) ListRestVariableConverter(com.plumdo.flow.rest.variable.ListRestVariableConverter) IntegerRestVariableConverter(com.plumdo.flow.rest.variable.IntegerRestVariableConverter) DateRestVariableConverter(com.plumdo.flow.rest.variable.DateRestVariableConverter)

Aggregations

BooleanRestVariableConverter (com.plumdo.flow.rest.variable.BooleanRestVariableConverter)1 DateRestVariableConverter (com.plumdo.flow.rest.variable.DateRestVariableConverter)1 DoubleRestVariableConverter (com.plumdo.flow.rest.variable.DoubleRestVariableConverter)1 IntegerRestVariableConverter (com.plumdo.flow.rest.variable.IntegerRestVariableConverter)1 ListRestVariableConverter (com.plumdo.flow.rest.variable.ListRestVariableConverter)1 LongRestVariableConverter (com.plumdo.flow.rest.variable.LongRestVariableConverter)1 ShortRestVariableConverter (com.plumdo.flow.rest.variable.ShortRestVariableConverter)1 StringRestVariableConverter (com.plumdo.flow.rest.variable.StringRestVariableConverter)1