1 package org.jadira.usertype.spi.shared; 2 3 import java.util.TimeZone; 4 5 import org.jadira.usertype.spi.timezone.proxy.WrapsSession; 6 7 /** 8 * @author Chris 9 */ 10 public interface DatabaseZoneConfigured extends WrapsSession { 11 12 void setDatabaseZone(TimeZone databaseZone); 13 14 TimeZone parseZone(String zoneString); 15 16 public TimeZone getDatabaseZone(); 17 }