> + } > + > + @Nullable > + public abstract String name(); > + > + @Nullable > + public abstract String id(); > + > + @Nullable > + public abstract String etag(); > + > + public abstract String location(); > + > + public abstract VirtualNetworkProperties properties(); > + > + @Nullable
@nacx Thanks for the recommendation. Since `tags` is optional and can be null, I have marked all references of `tags` in all the APIs to `@Nullable` and assigned `null` instead of an empty list. --- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs/pull/262/files/1801c68f227e1f245a30c6fa6ff044e7e2634460#r61209585
