Searched defs:dateFormat (Results 1 - 25 of 50) sorted by relevance

12

/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/notifications/
H A DNotificationLayout.java42 private java.text.DateFormat dateFormat; field in class:NotificationLayout
77 dateFormat = DateFormat.getMediumDateFormat(context);
156 return dateFormat.format(notificationTime.getMillis());
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/loggers/
H A DConsoleDebugLogPublisher.java55 private DateFormat dateFormat = new SimpleDateFormat("HH:mm:ss.SSS"); field in class:ConsoleDebugLogPublisher
127 buf.append(dateFormat.format(System.currentTimeMillis()));
/forgerock/openam-v13/openam-shared/src/test/java/com/sun/identity/shared/debug/
H A DDebugRotationTest.java36 private SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy.MM.dd G 'at' HH:mm:ss z"); field in class:DebugRotationTest
86 System.out.println("Test rotation for date : '" + dateFormat.format(calRandomDate.getTime()) + "'");
104 System.out.println("Test rotation for date : '" + dateFormat.format(calDSTMarch.getTime()) + "'");
122 System.out.println("Test rotation for date : '" + dateFormat.format(calDSTOctober.getTime()) + "'");
137 SimpleDateFormat dateFormat = new SimpleDateFormat("-MM.dd.yyyy-HH.mm");
211 if (isFileExist(debugNameFile + dateFormat.format(fakeDate.getTime()))) {
/forgerock/openam-v13/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/util/
H A DLogHelper.java133 return dateFormat;
139 private static final SimpleDateFormat dateFormat = new SimpleDateFormat( field in class:LogHelper
/forgerock/openam/openam-shared/src/test/java/com/sun/identity/shared/debug/
H A DDebugRotationTest.java37 private SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy.MM.dd G 'at' HH:mm:ss z"); field in class:DebugRotationTest
87 System.out.println("Test rotation for date : '" + dateFormat.format(calRandomDate.getTime()) + "'");
105 System.out.println("Test rotation for date : '" + dateFormat.format(calDSTMarch.getTime()) + "'");
123 System.out.println("Test rotation for date : '" + dateFormat.format(calDSTOctober.getTime()) + "'");
138 SimpleDateFormat dateFormat = new SimpleDateFormat("-MM.dd.yyyy-HH.mm");
212 if (isFileExist(debugNameFile + dateFormat.format(fakeDate.getTime()))) {
/forgerock/openam/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/util/
H A DLogHelper.java136 return dateFormat;
142 private static final SimpleDateFormat dateFormat = new SimpleDateFormat( field in class:LogHelper
/forgerock/opendj-b2.6/src/server/org/opends/server/schema/
H A DUTCTimeSyntax.java88 private static SimpleDateFormat dateFormat; field in class:UTCTimeSyntax
114 dateFormat = new SimpleDateFormat(DATE_FORMAT_UTC_TIME);
115 dateFormat.setLenient(false);
116 dateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
857 valueString = dateFormat.format(d);
898 dateFormat.set2DigitYearStart(datum2000);
907 dateFormat.set2DigitYearStart(datum1900);
910 return dateFormat.parse(valueString);
/forgerock/opendj2/src/server/org/opends/server/schema/
H A DUTCTimeSyntax.java87 private static SimpleDateFormat dateFormat; field in class:UTCTimeSyntax
113 dateFormat = new SimpleDateFormat(DATE_FORMAT_UTC_TIME);
114 dateFormat.setLenient(false);
115 dateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
856 valueString = dateFormat.format(d);
897 dateFormat.set2DigitYearStart(datum2000);
906 dateFormat.set2DigitYearStart(datum1900);
909 return dateFormat.parse(valueString);
/forgerock/opendj2.6.2/src/server/org/opends/server/schema/
H A DUTCTimeSyntax.java88 private static SimpleDateFormat dateFormat; field in class:UTCTimeSyntax
114 dateFormat = new SimpleDateFormat(DATE_FORMAT_UTC_TIME);
115 dateFormat.setLenient(false);
116 dateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
857 valueString = dateFormat.format(d);
898 dateFormat.set2DigitYearStart(datum2000);
907 dateFormat.set2DigitYearStart(datum1900);
910 return dateFormat.parse(valueString);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/schema/
H A DUTCTimeSyntax.java88 private static SimpleDateFormat dateFormat; field in class:UTCTimeSyntax
114 dateFormat = new SimpleDateFormat(DATE_FORMAT_UTC_TIME);
115 dateFormat.setLenient(false);
116 dateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
857 valueString = dateFormat.format(d);
898 dateFormat.set2DigitYearStart(datum2000);
907 dateFormat.set2DigitYearStart(datum1900);
910 return dateFormat.parse(valueString);
/forgerock/opendj2-hg/src/server/org/opends/server/schema/
H A DUTCTimeSyntax.java87 private static SimpleDateFormat dateFormat; field in class:UTCTimeSyntax
113 dateFormat = new SimpleDateFormat(DATE_FORMAT_UTC_TIME);
114 dateFormat.setLenient(false);
115 dateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
856 valueString = dateFormat.format(d);
897 dateFormat.set2DigitYearStart(datum2000);
906 dateFormat.set2DigitYearStart(datum1900);
909 return dateFormat.parse(valueString);
/forgerock/openam-v13/openam-federation/openam-idpdiscovery/src/main/java/com/sun/identity/saml2/idpdiscovery/
H A DDebug.java128 private static DateFormat dateFormat; field in class:Debug
180 dateFormat = new SimpleDateFormat("MM/dd/yyyy hh:mm:ss:SSS a zzz");
513 synchronized (dateFormat) {
514 buf.write(dateFormat.format(new Date()));
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/stats/
H A DStats.java128 private static DateFormat dateFormat; field in class:Stats
184 dateFormat = new SimpleDateFormat(
355 synchronized (dateFormat) {
356 buf.write(dateFormat.format(new Date()));
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/common/
H A DHttpServletRequestHelper.java222 * @param dateFormat
225 private void setDateFormatString(String dateFormat) { argument
226 _dateFormatString = dateFormat;
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/record/
H A DRecordReport.java44 private final static SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss:SSS a zzz"); field in class:RecordReport
97 synchronized (dateFormat) {
98 report.put(DATE_LABEL, dateFormat.format(new Date()));
124 return dateFormat.parse(globalInfo.get(DATE_LABEL).required().asString());
211 report.append(dateFormat.format(entry.getKey())).append(" -> ").append(entry.getValue()).append("\n");
220 report.append("DATE : ").append(dateFormat.format(new Date())).append("\n");
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/stats/
H A DStats.java131 private static DateFormat dateFormat; field in class:Stats
187 dateFormat = new SimpleDateFormat(
358 synchronized (dateFormat) {
359 buf.write(dateFormat.format(newDate()));
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/record/
H A DRecordReport.java46 private final static SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss:SSS a zzz"); field in class:RecordReport
99 synchronized (dateFormat) {
100 report.put(DATE_LABEL, dateFormat.format(newDate()));
126 return dateFormat.parse(globalInfo.get(DATE_LABEL).required().asString());
213 report.append(dateFormat.format(entry.getKey())).append(" -> ").append(entry.getValue()).append("\n");
222 report.append("DATE : ").append(dateFormat.format(newDate())).append("\n");
/forgerock/openam/openam-federation/openam-idpdiscovery/src/main/java/com/sun/identity/saml2/idpdiscovery/
H A DDebug.java129 private static DateFormat dateFormat; field in class:Debug
181 dateFormat = new SimpleDateFormat("MM/dd/yyyy hh:mm:ss:SSS a zzz");
514 synchronized (dateFormat) {
515 buf.write(dateFormat.format(newDate()));
/forgerock/opendj-b2.6/src/server/org/opends/server/tools/
H A DConsoleDebugLogPublisher.java65 private DateFormat dateFormat = new SimpleDateFormat("HH:mm:ss.SSS"); field in class:ConsoleDebugLogPublisher
436 buf.append(dateFormat.format(System.currentTimeMillis()));
/forgerock/opendj2/src/server/org/opends/server/tools/
H A DConsoleDebugLogPublisher.java64 private DateFormat dateFormat = new SimpleDateFormat("HH:mm:ss.SSS"); field in class:ConsoleDebugLogPublisher
435 buf.append(dateFormat.format(System.currentTimeMillis()));
/forgerock/opendj2.6.2/src/server/org/opends/server/tools/
H A DConsoleDebugLogPublisher.java65 private DateFormat dateFormat = new SimpleDateFormat("HH:mm:ss.SSS"); field in class:ConsoleDebugLogPublisher
436 buf.append(dateFormat.format(System.currentTimeMillis()));
/forgerock/opendj2-jel-hg/src/server/org/opends/server/tools/
H A DConsoleDebugLogPublisher.java65 private DateFormat dateFormat = new SimpleDateFormat("HH:mm:ss.SSS"); field in class:ConsoleDebugLogPublisher
436 buf.append(dateFormat.format(System.currentTimeMillis()));
/forgerock/opendj2-hg/src/server/org/opends/server/tools/
H A DConsoleDebugLogPublisher.java64 private DateFormat dateFormat = new SimpleDateFormat("HH:mm:ss.SSS"); field in class:ConsoleDebugLogPublisher
435 buf.append(dateFormat.format(System.currentTimeMillis()));
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/debug/impl/
H A DDebugImpl.java81 private SimpleDateFormat dateFormat = new SimpleDateFormat("MM/dd/yyyy hh:mm:ss:SSS a zzz"); field in class:DebugImpl
251 synchronized (dateFormat) {
252 dateFormatted = this.dateFormat.format(new Date());
/forgerock/openam-v13/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/
H A DUpgradeServices.java84 private final SimpleDateFormat dateFormat; field in class:UpgradeServices
90 dateFormat = new SimpleDateFormat(DATE_FORMAT);
91 createdDate = dateFormat.format(new Date());

Completed in 166 milliseconds

12