Does objectdb jpa implementation support @Convert annotation? (convertion of property before persistance and vice versa)
for example
@Convert(converter = MyConverter.class) private Date date;
I've wrote a test on this, and seems that my Converters methods are not executed at all (like annotation doesent exist)
(source http://en.wikibooks.org/wiki/Java_Persistence/Basic_Attributes#Example_Converter )