Package org.apache.portals.graffito.jcr.persistence.atomictypeconverter

Examples of org.apache.portals.graffito.jcr.persistence.atomictypeconverter.TimestampTypeConverter


        map.put(boolean.class, new BooleanTypeConverter(session.getValueFactory()));
        map.put(Boolean.class, new BooleanTypeConverter(session.getValueFactory()));
        map.put(Calendar.class, new CalendarTypeConverter(session.getValueFactory()));
        map.put(Date.class, new UtilDateTypeConverter(session.getValueFactory()));
        map.put(byte[].class, new ByteArrayTypeConverter(session.getValueFactory()));
        map.put(Timestamp.class, new TimestampTypeConverter(session.getValueFactory()));

        return map;
    }
View Full Code Here

TOP

Related Classes of org.apache.portals.graffito.jcr.persistence.atomictypeconverter.TimestampTypeConverter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.