[ 
https://issues.apache.org/activemq/browse/CAMEL-2642?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Claus Ibsen resolved CAMEL-2642.
--------------------------------

    Fix Version/s: 2.4.0
                       (was: Future)
       Resolution: Fixed

trunk: 952190.

> 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: 2.4.0
>
>         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.

Reply via email to