> -      } else if (equalsOrSuffix(qName, "ServiceName")) {
> -         builder.name(currentOrNull(currentText));
> +         if (qName.equals("DateCreated")) {
> +            created = 
> dateService.iso8601SecondsDateParse(currentOrNull(currentText));
> +         } else if (qName.equals("DateLastModified")) {
> +            lastModified = 
> dateService.iso8601SecondsDateParse(currentOrNull(currentText));
> +         } else if (qName.equals("Status")) {
> +            String statusText = currentOrNull(currentText);
> +            if (statusText != null) {
> +               status = status(statusText);
> +            }
> +         } else if (qName.equals("Name")) {
> +            propertyName = currentOrNull(currentText);
> +         } else if (qName.equals("Value")) {
> +            extendedProperties.put(propertyName, currentOrNull(currentText));
> +            propertyName = null;

[minor] Curious why this is here but not for `Name` just above?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/92/files#r19098644

Reply via email to