/* * Hibernate, Relational Persistence for Idiomatic Java * * License: GNU Lesser General Public License (LGPL), version 2.1 or later. * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. */ package org.hibernate.test.annotations.embeddables; import java.io.Serializable; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Types; import org.hibernate.HibernateException; import org.hibernate.engine.spi.SharedSessionContractImplementor; import org.hibernate.usertype.UserType; /** * @author Chris Pheby */ public class MyDateUserType implements UserType { @Override public int[] sqlTypes() { return new int[] {Types.DATE}; } @Override public Class<MyDate> returnedClass() { return MyDate.class; } @Override public boolean equals(Object x, Object y) throws HibernateException { if (!(x instanceof MyDate) || !(y instanceof MyDate)) { throw new HibernateException("Expected MyDate"); } return ((MyDate)x).getDate().equals(((MyDate)y).getDate()); } @Override public int hashCode(Object x) throws HibernateException { if (!(x instanceof MyDate)) { throw new HibernateException("Expected MyDate"); } return ((MyDate)x).getDate().hashCode(); } @Override public MyDate nullSafeGet( ResultSet rs, String[] names, SharedSessionContractImplementor session, Object owner) throws HibernateException, SQLException { return new MyDate(rs.getDate(rs.findColumn(names[0]))); } @Override public void nullSafeSet( PreparedStatement st, Object value, int index, SharedSessionContractImplementor session) throws HibernateException, SQLException { st.setDate(index, new java.sql.Date(((MyDate)value).getDate().getTime())); } @Override public Object deepCopy(Object value) throws HibernateException { MyDate result = new MyDate(); return result; } @Override public boolean isMutable() { return false; } @Override public Serializable disassemble(Object value) throws HibernateException { return null; } @Override public Object assemble(Serializable cached, Object owner) throws HibernateException { return null; } @Override public Object replace(Object original, Object target, Object owner) throws HibernateException { return null; } }