From e7bc4c95d69b0e94c343f2649efb457cc96c6ef7 Mon Sep 17 00:00:00 2001 From: Jeremy Grelle Date: Wed, 6 Feb 2008 21:06:01 +0000 Subject: [PATCH] Bug fix - needed to set ConversionService on ActionResultExposer --- .../springframework/webflow/action/ActionResultExposer.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/spring-webflow/src/main/java/org/springframework/webflow/action/ActionResultExposer.java b/spring-webflow/src/main/java/org/springframework/webflow/action/ActionResultExposer.java index d8ad0318..99641050 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/action/ActionResultExposer.java +++ b/spring-webflow/src/main/java/org/springframework/webflow/action/ActionResultExposer.java @@ -123,4 +123,8 @@ public class ActionResultExposer implements Serializable { } return conversionService.getConversionExecutor(value.getClass(), targetType).execute(value); } + + public void setConversionService(ConversionService conversionService) { + this.conversionService = conversionService; + } } \ No newline at end of file