[
https://issues.apache.org/jira/browse/JCR-864?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Christophe Lombart reassigned JCR-864:
--------------------------------------
Assignee: Christophe Lombart
> Bug in
> org.apache.portals.graffito.jcr.persistence.atomictypeconverter.impl.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
> 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.