All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.ebeaninternal.server.core.timezone.CloneDataTimeZone Maven / Gradle / Ivy

There is a newer version: 15.6.0
Show newest version
package io.ebeaninternal.server.core.timezone;

import java.util.Calendar;

/**
 * Implementation of DataTimeZone that clones the Calendar instance.
 * 

* Used with Oracle JDBC driver as that wants to mutate the Calender. *

*/ public class CloneDataTimeZone extends SimpleDataTimeZone { public CloneDataTimeZone(String zoneId) { super(zoneId); } @Override public Calendar getTimeZone() { // return cloned copy for Oracle to muck around with return (Calendar) zone.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy