> + * <code>time.time()</code> format (in seconds). It will be converted to
> a proper
> + * Java {@link Date}
> + *
> + * @param from the {@link HttpResponse} containing the headers
> + *
> + * @return the {@link Account} object
> + */
> + public Account apply(HttpResponse from) {
> +
> + Multimap<String, String> metaMap =
> + filterPrefixedHeaders(from.getHeaders(),
> ACCOUNT_METADATA_PREFIX);
> +
> + Map<String, String> m = extractMetadata(metaMap,
> ACCOUNT_METADATA_PREFIX);
> +
> + return Account.builder()
> + .transactionId(from.getFirstHeaderOrNull(TRANSACTION_ID))
I thought `null` was not a valid value for `transactionId`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/17/files#r6383647