return customConverter(aClass);
}
// TODO Constraint with Generic
public CustomConverterBuilder customConverter(Class type) {
converterDescription = new CustomConverterDescription();
converterDescription.setType(type);
configuration.getCustomConverters().addConverter(converterDescription);
return new CustomConverterBuilder(converterDescription);
}