> + * The response to creating messages on a queue.
> + *
> + * @author Everett Toews
> + */
> +public class MessagesCreated {
> +
> + private final boolean partial;
> + @Named("resources")
> + private final List<String> messageIds;
> +
> + @ConstructorProperties({
> + "partial", "resources"
> + })
> + protected MessagesCreated(boolean partial, List<String> messageIds) {
> + this.partial = partial;
> + this.messageIds = messageIds != null ? messageIds :
> ImmutableList.<String> of();
Mark messageIds as `@Nullable`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/46/files#r7270983