Uses of Interface
org.example.azapi.AzDataDateTime

Packages that use AzDataDateTime
org.example.azapi The AzApi package contains the interfaces that must be implemented by a provider. 
 

Uses of AzDataDateTime in org.example.azapi
 

Methods in org.example.azapi that return AzDataDateTime
 AzDataDateTime AzEntity.createAzDataDateTime(java.util.Date date, int actualTimeZone, int intendedTimeZone, int nanoSeconds)
          Returns a helper data container for XACML #date, #time, and #date-time datatypes
 AzDataDateTime AzAttributeValueTime.getValue()
          Return the Date object that is used to produce the Xacml date DataType content.
 AzDataDateTime AzAttributeValueDateTime.getValue()
          Return the Date object that is used to produce the Xacml dateTime DataType content.
 AzDataDateTime AzAttributeValueDate.getValue()
          Return the Date object that is used to produce the Xacml date DataType content.
 

Methods in org.example.azapi with parameters of type AzDataDateTime
 AzAttributeValueDate AzEntity.createAzAttributeValue(AzDataTypeIdDate u, AzDataDateTime v)
          Returns a general AzAttributeValueDate object that holds a #date type and value, that can be used with an AzAttribute of any AzCategoryId.
 AzAttributeValueDateTime AzEntity.createAzAttributeValue(AzDataTypeIdDateTime u, AzDataDateTime v)
          Returns a general AzAttributeValueDateTime object that holds a #dateTime type and value, that can be used with an AzAttribute of any AzCategoryId.
 AzAttributeValueTime AzEntity.createAzAttributeValue(AzDataTypeIdTime u, AzDataDateTime v)
          Returns an AzAttributeValueTime object that holds a #time type and value, where that value was established by the parameters passed in this method.
 void AzAttributeValueTime.setValue(AzDataDateTime azDataDateTime)
          Set the value with an AzDataDateTime object that will be used to provide the content for the Xacml DataType: #time
 void AzAttributeValueDateTime.setValue(AzDataDateTime date)
          Set the value with AzDataDateTime object that will be used to provide the content for the Xacml DataType #dateTime
 void AzAttributeValueDate.setValue(AzDataDateTime date)
          Set the value with Java Date object that will be used to provide the content for the Xacml DataType: #date