Example usage for org.hibernate.type TimestampType subclass-usage

List of usage examples for org.hibernate.type TimestampType subclass-usage

Introduction

In this page you can find the example usage for org.hibernate.type TimestampType subclass-usage.

Usage

From source file de.innovationgate.webgate.api.mysql.JavaDateAsLongType.java

public class JavaDateAsLongType extends TimestampType {

    /**
      * 
      */
    private static final long serialVersionUID = 1L;

From source file de.innovationgate.webgate.api.postgresql.JavaDateAsLongType.java

public class JavaDateAsLongType extends TimestampType {

    /**
      * 
      */
    private static final long serialVersionUID = 1L;

From source file org.osaf.cosmo.hibernate.LongTimestampType.java

/**
 * Custom Hibernate type that maps a java.util.Date
 * to a SQL BIGINT column, storing the number of 
 * milliseconds that have passed since Jan 1, 1970 GMT.
 *
 */

From source file org.sipfoundry.sipxconfig.common.UtcTimestampType.java

/**
 * Standard Hibernate assume that type is kept in local time zone and will normalize it to UTC.
 * Use this type if your type is already normalized to UTC.
 */
public class UtcTimestampType extends TimestampType {
    private Calendar m_local;