Uses of Interface
org.example.azapi.AzDataByteArray

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

Uses of AzDataByteArray in org.example.azapi
 

Methods in org.example.azapi that return AzDataByteArray
 AzDataByteArray AzEntity.createAzDataByteArray(byte[] byteArray)
          Returns a helper data container for boxed Java byte[] arrays
 AzDataByteArray AzAttributeValueHexBinary.getValue()
          Return the Java AzDataByteArray object that contains the Java byte[] array that is used by this AzAttributeValueHexBinary object to represent the XACML #hexBinary DataType
 AzDataByteArray AzAttributeValueBase64Binary.getValue()
          Return the Java AzDataByteArray object that is used by this AzAttributeValueBase64Binary object to represent the XACML #base64Binary DataType
 

Methods in org.example.azapi with parameters of type AzDataByteArray
 AzAttributeValueBase64Binary AzEntity.createAzAttributeValue(AzDataTypeIdBase64Binary u, AzDataByteArray v)
          Returns an AzAttributeValue object that holds a AzDataByteArray type and value, that can be used with an AzAttribute of any AzCategoryId.
 AzAttributeValueHexBinary AzEntity.createAzAttributeValue(AzDataTypeIdHexBinary u, AzDataByteArray v)
          Returns an AzAttributeValue object that holds a AzDataByteArray type and value, that can be used with an AzAttribute of any AzCategoryId.
 void AzAttributeValueHexBinary.setValue(AzDataByteArray azVal)
          Set the value of this AzAttributeValueHexBinary object with a Java AzDataByteArray object that can generate the string that can be used for the value of a XACML #hexBinary DataType.
 void AzAttributeValueBase64Binary.setValue(AzDataByteArray azVal)
          Set the value of this AzAttributeValueBase64Binary object with a Java AzDataByteArray object that can generate the string that can be used for the value of a XACML #base64Binary DataType.