> + * <sequence>
> + * <element name="requestId"
> type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
> + * </sequence>
> + * </restriction>
> + * </complexContent>
> + * </complexType>
> + * </pre>
> + *
> + *
> + */
> +public class RequestResponse {
> +
> + protected String requestId;
> +
> + public RequestResponse(String requestId) {
> + this.requestId = requestId;
Can this be null? Add a `checkNotNull` check or a `@Nullable` annotation
accordingly.
Also, apply this pattern to all the domain objects.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/72/files#r17229415