Searched refs:notBefore (Results 1 - 16 of 16) sorted by relevance

/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/assertion/
H A DConditions.java76 * @param notBefore specifies the earliest time instant at which the
80 * @exception SAMLException if the <code>notBefore</code> instant is after
83 public Conditions(java.util.Date notBefore, java.util.Date notOnOrAfter) argument
86 if (notBefore != null) {
88 if ((notBefore.after(notOnOrAfter)) ||
89 (notBefore.equals(notOnOrAfter)))
93 + " notBefore or notOnOrAfter");
98 _notBefore = notBefore;
102 _notBefore = notBefore;
112 * @param notBefore specifie
122 Conditions(java.util.Date notBefore, java.util.Date notOnOrAfter, Condition condition, AudienceRestrictionCondition arc) argument
158 Conditions(java.util.Date notBefore, java.util.Date notOnOrAfter, Condition condition, AudienceRestrictionCondition arc, DoNotCacheCondition doNotCacheCnd) argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/assertion/
H A DConditions.java76 * @param notBefore specifies the earliest time instant at which the
80 * @exception SAMLException if the <code>notBefore</code> instant is after
83 public Conditions(java.util.Date notBefore, java.util.Date notOnOrAfter) argument
86 if (notBefore != null) {
88 if ((notBefore.after(notOnOrAfter)) ||
89 (notBefore.equals(notOnOrAfter)))
93 + " notBefore or notOnOrAfter");
98 _notBefore = notBefore;
102 _notBefore = notBefore;
112 * @param notBefore specifie
122 Conditions(java.util.Date notBefore, java.util.Date notOnOrAfter, Condition condition, AudienceRestrictionCondition arc) argument
158 Conditions(java.util.Date notBefore, java.util.Date notOnOrAfter, Condition condition, AudienceRestrictionCondition arc, DoNotCacheCondition doNotCacheCnd) argument
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DConditionsImpl.java66 private Date notBefore; field in class:ConditionsImpl
147 notBefore = DateUtils.stringToDate(attrValue);
330 return notBefore;
346 notBefore = value;
358 if (notBefore == null ) {
367 if (someTime >= notBefore.getTime()) {
370 } else if ((someTime >= notBefore.getTime()) &&
400 if (notBefore != null) {
401 str = DateUtils.toUTCDateFormat(notBefore);
H A DSubjectConfirmationDataImpl.java69 private Date notBefore = null; field in class:SubjectConfirmationDataImpl
170 notBefore = DateUtils.stringToDate(attrValue);
328 return notBefore;
345 notBefore = value;
481 if (notBefore != null) {
483 xml.append(DateUtils.toUTCDateFormat(notBefore));
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DConditionsImpl.java66 private Date notBefore; field in class:ConditionsImpl
147 notBefore = DateUtils.stringToDate(attrValue);
330 return notBefore;
346 notBefore = value;
358 if (notBefore == null ) {
367 if (someTime >= notBefore.getTime()) {
370 } else if ((someTime >= notBefore.getTime()) &&
400 if (notBefore != null) {
401 str = DateUtils.toUTCDateFormat(notBefore);
H A DSubjectConfirmationDataImpl.java69 private Date notBefore = null; field in class:SubjectConfirmationDataImpl
170 notBefore = DateUtils.stringToDate(attrValue);
328 return notBefore;
345 notBefore = value;
481 if (notBefore != null) {
483 xml.append(DateUtils.toUTCDateFormat(notBefore));
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/common/
H A DLibertyAuthnResponseHelper.java178 Date notBefore = conditions.getNotBefore();
184 + "validity. notBefore: " + notBefore + " notOnOrAfter: "
189 // Adjust the notBefore and notOnOrAfter with skew factor
190 long adjustedNotBefore = notBefore.getTime() - skew;
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/common/
H A DWSFederationUtils.java302 * @return true if the current time is after the Assertion's notBefore time
333 Date notBefore = assertion.getConditions().getNotBefore();
334 if ( notBefore == null ) {
342 } else if ((notBefore.getTime() - timeskew * 1000) > timeNow ) {
345 notBefore.toString(),
/forgerock/openidm-v4/openidm-security/src/main/java/org/forgerock/openidm/security/impl/
H A DSecurityResourceProvider.java236 content.put("notBefore", ((X509Certificate)cert).getNotBefore());
383 Date notBefore = null;
386 notBefore = new Date(System.currentTimeMillis() - 1000L * 60 * 60 * 24 * 30);
392 notBefore = notBeforeDateTime.toDate();
412 notBefore, notAfter, builder.build(), keyPair.getPublic());
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/common/
H A DWSFederationUtils.java315 * @return true if the current time is after the Assertion's notBefore time
346 Date notBefore = assertion.getConditions().getNotBefore();
347 if ( notBefore == null ) {
355 } else if ((notBefore.getTime() - timeskew * 1000) > timeNow ) {
358 notBefore.toString(),
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/profile/
H A DSAML11RequestedSecurityToken.java155 * to form Assertion notBefore time.
157 * notBefore time to its notOnOrAfter time.
193 Date notBefore = new Date(issueInstant.getTime() - skewPeriod);
211 Conditions cond = new Conditions(notBefore, notAfter, null, arc);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/profile/
H A DSAML11RequestedSecurityToken.java159 * to form Assertion notBefore time.
161 * notBefore time to its notOnOrAfter time.
196 Date notBefore = new Date(issueInstant.getTime() - skewPeriod);
212 Conditions cond = new Conditions(notBefore, notAfter, null, arc);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/
H A DAssertionManager.java844 Date notBefore = new Date(issueInstant.getTime() - notBeforeSkew);
847 Conditions cond = new Conditions(notBefore, notAfter);
1438 Date notBefore = new Date(issueInstant.getTime() - notBeforeSkew);
1440 Conditions cond = new Conditions(notBefore, notAfter);
1627 Date notBefore = new Date(issueInstant.getTime() - notBeforeSkew);
1628 Conditions cond = new Conditions(notBefore, notAfter);
2105 Date notBefore = new Date(issueInstant.getTime() - notBeforeSkew);
2106 Conditions cond = new Conditions(notBefore, notAfter);
2612 // validity of assertion as if notBefore is
2617 Date notBefore
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/
H A DAssertionManager.java846 Date notBefore = new Date(issueInstant.getTime() - notBeforeSkew);
849 Conditions cond = new Conditions(notBefore, notAfter);
1440 Date notBefore = new Date(issueInstant.getTime() - notBeforeSkew);
1442 Conditions cond = new Conditions(notBefore, notAfter);
1629 Date notBefore = new Date(issueInstant.getTime() - notBeforeSkew);
1630 Conditions cond = new Conditions(notBefore, notAfter);
2107 Date notBefore = new Date(issueInstant.getTime() - notBeforeSkew);
2108 Conditions cond = new Conditions(notBefore, notAfter);
2614 // validity of assertion as if notBefore is
2619 Date notBefore
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/common/
H A DSAML2Utils.java726 Date notBefore = subjectConfData.getNotBefore();
727 if (notBefore != null) {
728 if ((notBefore.getTime() + timeskew * 1000) >
740 retMap.put(SAML2Constants.NOTBEFORE, notBefore);
892 Date notBefore = conditions.getNotBefore();
894 if (notBefore == null) {
897 debug.message("{}NotBefore Condition = {}", method, notBefore);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/common/
H A DSAML2Utils.java766 Date notBefore = subjectConfData.getNotBefore();
767 if (notBefore != null) {
768 if ((notBefore.getTime() + timeskew * 1000) >
780 retMap.put(SAML2Constants.NOTBEFORE, notBefore);

Completed in 80 milliseconds