Here you can find the source of getGrandfatheredTime()
public static Timestamp getGrandfatheredTime()
//package com.java2s; //License from project: Apache License import java.sql.Timestamp; public class Main { public static Timestamp getGrandfatheredTime() { /**/*w w w . j av a2 s . c o m*/ * Currently set to Y2K as an easter egg to easily set apart * grandfathered accounts from post-launch accounts. */ Timestamp grandfatheredTime = Timestamp.valueOf("2000-01-01 00:00:00.0"); return grandfatheredTime; } }