-
- All Known Implementing Classes:
Conditions,Conditions
public interface ConditionsThe validity of anAssertionMAY be subject to a set ofConditions. EachConditionevaluates to a value that is Valid, Invalid or Indeterminate.The following schema fragment specifies the expected content contained within SAML Conditions element.
<complexType name="ConditionsType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice maxOccurs="unbounded" minOccurs="0"> <element ref="{urn:oasis:names:tc:SAML:1.0:assertion}AudienceRestrictionCondition"/> <element ref="{urn:oasis:names:tc:SAML:1.0:assertion}DoNotCacheCondition"/> <element ref="{urn:oasis:names:tc:SAML:1.0:assertion}Condition"/> </choice> <attribute name="NotBefore" type="{http://www.w3.org/2001/XMLSchema}dateTime" /> <attribute name="NotOnOrAfter" type="{http://www.w3.org/2001/XMLSchema}dateTime" /> </restriction> </complexContent> </complexType>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Object>getConditions()Gets the value of the audienceRestrictionConditionOrDoNotCacheConditionOrCondition property.DategetNotBeforeDate()Gets the value of the notBefore property.DategetNotOnOrAfterDate()Gets the value of the notOnOrAfter property.
-
-
-
Method Detail
-
getNotBeforeDate
Date getNotBeforeDate()
Gets the value of the notBefore property.- Returns:
- object is
Date
-
getNotOnOrAfterDate
Date getNotOnOrAfterDate()
Gets the value of the notOnOrAfter property.- Returns:
- object is
Date
-
getConditions
List<Object> getConditions()
Gets the value of the audienceRestrictionConditionOrDoNotCacheConditionOrCondition property.- Returns:
- Objects of the following type(s) are in the list
DoNotCacheConditionAudienceRestrictionConditionCondition
-
-