Searched defs:issueInstant (Results 26 - 30 of 30) sorted by relevance

12

/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DAssertionImpl.java74 private Date issueInstant; field in class:AssertionImpl
203 issueInstant = DateUtils.stringToDate(attrValue);
395 return issueInstant;
401 * @param issueInstant the issue time of the assertion
405 public void setIssueInstant(Date issueInstant) throws SAML2Exception { argument
410 this.issueInstant = issueInstant;
802 if (issueInstant == null) {
808 String instantStr = DateUtils.toUTCDateFormat(issueInstant);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DRequestAbstractImpl.java74 protected Date issueInstant = null; field in class:RequestAbstractImpl
235 issueInstant = dateTime;
245 return issueInstant;
387 xml.append(DateUtils.toUTCDateFormat(issueInstant));
480 issueInstant = DateUtils.stringToDate(issueInstantStr);
493 if (issueInstant == null) {
497 validateIssueInstant(DateUtils.dateToString(issueInstant));
514 .append(DateUtils.toUTCDateFormat(issueInstant))
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/assertion/
H A DAssertionBase.java514 * @param issueInstant time instant of the issue. It has type
526 Date issueInstant, Set statements) throws SAMLException
550 if (issueInstant != null) {
551 _issueInstant = issueInstant;
567 * @param issueInstant time instant of the issue. It has type
581 Date issueInstant, Conditions conditions, Set statements)
607 if (issueInstant != null) {
608 _issueInstant = issueInstant;
627 * @param issueInstant Time instant of the issue. It has type
643 Date issueInstant, Condition
525 AssertionBase(String assertionID,java.lang.String issuer, Date issueInstant, Set statements) argument
580 AssertionBase(String assertionID,java.lang.String issuer, Date issueInstant, Conditions conditions, Set statements) argument
642 AssertionBase(String assertionID,java.lang.String issuer, Date issueInstant, Conditions conditions, AdviceBase advice, Set statements) argument
704 setIssueInstant(java.util.Date issueInstant) argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DAssertionImpl.java76 private Date issueInstant; field in class:AssertionImpl
205 issueInstant = DateUtils.stringToDate(attrValue);
397 return issueInstant;
403 * @param issueInstant the issue time of the assertion
407 public void setIssueInstant(Date issueInstant) throws SAML2Exception { argument
412 this.issueInstant = issueInstant;
804 if (issueInstant == null) {
810 String instantStr = DateUtils.toUTCDateFormat(issueInstant);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DRequestAbstractImpl.java74 protected Date issueInstant = null; field in class:RequestAbstractImpl
235 issueInstant = dateTime;
245 return issueInstant;
387 xml.append(DateUtils.toUTCDateFormat(issueInstant));
480 issueInstant = DateUtils.stringToDate(issueInstantStr);
493 if (issueInstant == null) {
497 validateIssueInstant(DateUtils.dateToString(issueInstant));
514 .append(DateUtils.toUTCDateFormat(issueInstant))

Completed in 54 milliseconds

12