> + return metadata;
> + }
> +
> + /**
> + * Static utility method to convert a Python timestamp to a Java {@link
> Date}. For example,
> + * the timestamp returned from the API is a String in the form
> "1368738007.90714".
> + * This method handles the necessary conversion.
> + *
> + * @param inTimestamp the timestamp to convert.
> + *
> + * @return the converted {@link Date}
> + *
> + * @see Python's <code>time.time()</code>
> + */
> + public static Date convertTimestamp(String inTimestamp) {
> + checkNotNull(inTimestamp);
`checkNotNull(inTimestamp, "inTimestamp");`
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/17/files#r5398066