in legacy/java/TopSites.java [52:65]
public TopSites(String accessKeyId, String secretAccessKey, String countryCode) {
this.accessKeyId = accessKeyId;
this.secretAccessKey = secretAccessKey;
this.countryCode = countryCode;
Date now = new Date();
SimpleDateFormat formatAWS = new SimpleDateFormat(DATEFORMAT_AWS);
formatAWS.setTimeZone(TimeZone.getTimeZone("GMT"));
this.amzDate = formatAWS.format(now);
SimpleDateFormat formatCredential = new SimpleDateFormat(DATEFORMAT_CREDENTIAL);
formatCredential.setTimeZone(TimeZone.getTimeZone("GMT"));
this.dateStamp = formatCredential.format(now);
}