[
https://issues.apache.org/activemq/browse/CAMEL-2642?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=59966#action_59966
]
Claus Ibsen commented on CAMEL-2642:
------------------------------------
trunk: 952173.
Work in progress
> Inconsistency between IntrospectionSupport.getProperties() and
> IntrospectionSupport.getProperty()
> -------------------------------------------------------------------------------------------------
>
> Key: CAMEL-2642
> URL: https://issues.apache.org/activemq/browse/CAMEL-2642
> Project: Apache Camel
> Issue Type: Bug
> Components: camel-core
> Affects Versions: 2.3.0
> Environment: All
> Reporter: Christian Mueller
> Assignee: Claus Ibsen
> Priority: Minor
> Fix For: Future
>
> Attachments: camel-core-unit-test.patch
>
>
> IntrospectionSupport.getProperties() and IntrospectionSupport.getProperty()
> work in an inconsistency way:
> {code}
> ExampleBean bean = new ExampleBean();
> Date date = new Date(0);
> bean.setDate(date);
> assertSame(date, IntrospectionSupport.getProperty(bean, "date")); // succeed
> Map<String, Object> map = new HashMap<String, Object>();
> IntrospectionSupport.getProperties(bean, map, null);
> assertSame(date, map.get("date")); // fails
> {code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.