Searched refs:DateUtils (Results 1 - 25 of 159) sorted by relevance

1234567

/forgerock/openam-v13/openam-shared/src/test/java/com/sun/identity/shared/
H A DDateUtilsTest.java44 Date date = DateUtils.stringToDate(testDate);
51 Date date = DateUtils.stringToDate(testDate);
58 Date date = DateUtils.stringToDate(testDate);
65 Date date = DateUtils.stringToDate(testDate);
72 Date date = DateUtils.stringToDate(testDate);
78 String have = DateUtils.dateToString(dateWithoutMilliseconds);
87 String have = DateUtils.toUTCDateFormat(dateWithoutMilliseconds);
96 String have = DateUtils.toUTCDateFormatWithMilliseconds(dateWithoutMilliseconds);
102 have = DateUtils.toUTCDateFormatWithMilliseconds(dateWithMilliseconds);
106 assertThat(DateUtils
[all...]
/forgerock/openam/openam-shared/src/test/java/com/sun/identity/shared/
H A DDateUtilsTest.java44 Date date = DateUtils.stringToDate(testDate);
51 Date date = DateUtils.stringToDate(testDate);
58 Date date = DateUtils.stringToDate(testDate);
65 Date date = DateUtils.stringToDate(testDate);
72 Date date = DateUtils.stringToDate(testDate);
78 String have = DateUtils.dateToString(dateWithoutMilliseconds);
87 String have = DateUtils.toUTCDateFormat(dateWithoutMilliseconds);
96 String have = DateUtils.toUTCDateFormatWithMilliseconds(dateWithoutMilliseconds);
102 have = DateUtils.toUTCDateFormatWithMilliseconds(dateWithMilliseconds);
106 assertThat(DateUtils
[all...]
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/validation/
H A DXSDateTimeValidator.java31 import com.sun.identity.shared.DateUtils;
67 DateUtils.stringToDate(strData);
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/validation/
H A DXSDateTimeValidator.java31 import com.sun.identity.shared.DateUtils;
67 DateUtils.stringToDate(strData);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/common/validation/
H A DXSDateTimeValidator.java34 import com.sun.identity.shared.DateUtils;
71 DateUtils.stringToDate(strData);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/common/validation/
H A DXSDateTimeValidator.java34 import com.sun.identity.shared.DateUtils;
71 DateUtils.stringToDate(strData);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/dpro/session/
H A DPartialSessionFactory.java37 import com.sun.identity.shared.DateUtils;
84 builder.latestAccessTime(DateUtils.toUTCDateFormat(TimeUtils.fromUnixTime(Long.valueOf(
87 builder.maxIdleExpirationTime(DateUtils.toUTCDateFormat(partialToken.<Calendar>getValue(
90 builder.maxSessionExpirationTime(DateUtils.toUTCDateFormat(partialToken.<Calendar>getValue(
112 builder.latestAccessTime(DateUtils.toUTCDateFormat(TimeUtils.fromUnixTime(
116 builder.maxIdleExpirationTime(DateUtils.toUTCDateFormat(TimeUtils.fromUnixTime(
118 builder.maxSessionExpirationTime(DateUtils.toUTCDateFormat(TimeUtils.fromUnixTime(
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/coretoken/
H A DCoreTokenUtils.java40 import com.sun.identity.shared.DateUtils;
66 Date expiryDate = DateUtils.stringToDate(tokenExpiry);
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/query/
H A DAttributeType.java21 import com.sun.identity.shared.DateUtils;
55 Date timestamp = DateUtils.stringToDate(value.toString());
/forgerock/openam/openam-core/src/main/java/com/sun/identity/coretoken/
H A DCoreTokenUtils.java42 import com.sun.identity.shared.DateUtils;
68 Date expiryDate = DateUtils.stringToDate(tokenExpiry);
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/query/
H A DAttributeType.java21 import com.sun.identity.shared.DateUtils;
55 Date timestamp = DateUtils.stringToDate(value.toString());
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/security/
H A DSessionContext.java32 import com.sun.identity.shared.DateUtils;
190 _issueInstant = DateUtils.stringToDate(issueInstant);
191 _authenticationInstant = DateUtils.stringToDate(authInstant);
357 append(DateUtils.toUTCDateFormat(_issueInstant)).append("\" ").
359 append(DateUtils.toUTCDateFormat(_authenticationInstant)).
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DAuthnStatementImpl.java43 import com.sun.identity.shared.DateUtils;
143 DateUtils.stringToDate(((Attr)att).getValue().trim());
156 DateUtils.stringToDate(((Attr)att).getValue().trim());
448 append(DateUtils.toUTCDateFormat(authnInstant)).append("\"");
454 append(DateUtils.toUTCDateFormat(sessionNotOnOrAfter)).
H A DSubjectConfirmationDataImpl.java47 import com.sun.identity.shared.DateUtils;
170 notBefore = DateUtils.stringToDate(attrValue);
172 notOnOrAfter = DateUtils.stringToDate(attrValue);
465 xml.append(DateUtils.toUTCDateFormat(notOnOrAfter));
483 xml.append(DateUtils.toUTCDateFormat(notBefore));
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/security/
H A DSessionContext.java34 import com.sun.identity.shared.DateUtils;
192 _issueInstant = DateUtils.stringToDate(issueInstant);
193 _authenticationInstant = DateUtils.stringToDate(authInstant);
359 append(DateUtils.toUTCDateFormat(_issueInstant)).append("\" ").
361 append(DateUtils.toUTCDateFormat(_authenticationInstant)).
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DAuthnStatementImpl.java43 import com.sun.identity.shared.DateUtils;
143 DateUtils.stringToDate(((Attr)att).getValue().trim());
156 DateUtils.stringToDate(((Attr)att).getValue().trim());
448 append(DateUtils.toUTCDateFormat(authnInstant)).append("\"");
454 append(DateUtils.toUTCDateFormat(sessionNotOnOrAfter)).
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/soapbinding/
H A DConsentHeader.java32 import com.sun.identity.shared.DateUtils;
96 timestamp = DateUtils.stringToDate(str);
211 DateUtils.toUTCDateFormat(timestamp));
H A DCorrelationHeader.java40 import com.sun.identity.shared.DateUtils;
118 timestamp = DateUtils.stringToDate(str);
235 DateUtils.toUTCDateFormat(timestamp));
/forgerock/openam-v13/openam-tools/openam-license-core/src/main/java/org/forgerock/openam/license/
H A DPropertiesFileLicenseLog.java19 import com.sun.identity.shared.DateUtils;
87 String acceptedDateStr = DateUtils.toUTCDateFormat(acceptedDate);
118 result = DateUtils.stringToDate(logDateStr);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/soapbinding/
H A DConsentHeader.java32 import com.sun.identity.shared.DateUtils;
96 timestamp = DateUtils.stringToDate(str);
211 DateUtils.toUTCDateFormat(timestamp));
H A DCorrelationHeader.java43 import com.sun.identity.shared.DateUtils;
121 timestamp = DateUtils.stringToDate(str);
238 DateUtils.toUTCDateFormat(timestamp));
/forgerock/openam/openam-tools/openam-license-core/src/main/java/org/forgerock/openam/license/
H A DPropertiesFileLicenseLog.java21 import com.sun.identity.shared.DateUtils;
89 String acceptedDateStr = DateUtils.toUTCDateFormat(acceptedDate);
120 result = DateUtils.stringToDate(logDateStr);
/forgerock/openam-v13/openam-tools/openam-license-core/src/test/java/org/forgerock/openam/license/
H A DPropertiesFileLicenseLogTest.java19 import com.sun.identity.shared.DateUtils;
119 Date loggedDate = DateUtils.stringToDate(logged.getProperty(user));
/forgerock/openam/openam-tools/openam-license-core/src/test/java/org/forgerock/openam/license/
H A DPropertiesFileLicenseLogTest.java19 import com.sun.identity.shared.DateUtils;
126 Date loggedDate = DateUtils.stringToDate(logged.getProperty(user));
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/assertion/
H A DConditions.java31 import com.sun.identity.shared.DateUtils;
202 _notBefore = DateUtils.stringToDate(dt);
218 _notOnOrAfter = DateUtils.stringToDate(
426 .append(DateUtils.toUTCDateFormat(_notBefore))
434 .append(DateUtils.toUTCDateFormat(_notOnOrAfter))

Completed in 35 milliseconds

1234567