/* * Copyright 2010, 2011 Christopher Pheby * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.jadira.usertype.dateandtime.threeten; import java.time.LocalTime; import java.time.OffsetTime; import java.time.ZoneOffset; import org.jadira.usertype.dateandtime.threeten.columnmapper.StringColumnZoneOffsetMapper; import org.jadira.usertype.dateandtime.threeten.columnmapper.TimeColumnLocalTimeMapper; import org.jadira.usertype.spi.shared.AbstractMultiColumnUserType; import org.jadira.usertype.spi.shared.ColumnMapper; /** * Persist {@link OffsetTime} via Hibernate. This uses java.sql.Time and the time datatype of your database. You * will not retain millis / nanoseconds part. */ public class PersistentOffsetTimeAsTimeAndStringOffset extends AbstractMultiColumnUserType<OffsetTime> { private static final long serialVersionUID = 1364221029392346011L; private static final ColumnMapper<?, ?>[] COLUMN_MAPPERS = new ColumnMapper<?, ?>[] { new TimeColumnLocalTimeMapper(), new StringColumnZoneOffsetMapper() }; private static final String[] PROPERTY_NAMES = new String[]{ "time", "offset" }; @Override protected OffsetTime fromConvertedColumns(Object[] convertedColumns) { LocalTime datePart = (LocalTime) convertedColumns[0]; ZoneOffset offset = (ZoneOffset) convertedColumns[1]; return OffsetTime.of(datePart, offset); } @Override protected ColumnMapper<?, ?>[] getColumnMappers() { return COLUMN_MAPPERS; } @Override protected Object[] toConvertedColumns(OffsetTime value) { return new Object[] { value.toLocalTime(), value.getOffset() }; } @Override public String[] getPropertyNames() { return PROPERTY_NAMES; } }