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

Jukka Zitting updated JCR-864:
------------------------------

    Priority: Minor  (was: Major)
     Summary: Bug in UtilDateTypeConverterImpl  (was: Bug in 
org.apache.portals.graffito.jcr.persistence.atomictypeconverter.impl.UtilDateTypeConverterImpl)

> Bug in UtilDateTypeConverterImpl
> --------------------------------
>
>                 Key: JCR-864
>                 URL: https://issues.apache.org/jira/browse/JCR-864
>             Project: Jackrabbit
>          Issue Type: Bug
>          Components: jcr-mapping
>            Reporter: Martin Koci
>            Assignee: Christophe Lombart
>            Priority: Minor
>             Fix For: 1.4
>
>         Attachments: UtilDateTypeConverterImpl.patch
>
>
> In this converter following line is used:
> return this.getValueFactory().createValue(((java.util.Date) 
> propValue).getTime());
> but propValue must be converted to java.util.Calendar, not into long! 
> ValueFactory than converts to LongValue not DateValue as expected.
> Following code works OK:
> final long timeInMilis = ((java.util.Date) propValue).getTime();
> final Calendar calendar = Calendar.getInstance();
> calendar.setTimeInMillis(timeInMilis);
> return this.getValueFactory().createValue( calendar );
> but I dont know better Date-> Calendar conversion.

-- 
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