> +import org.jclouds.json.Json;
> +
> +import javax.inject.Inject;
> +import javax.inject.Singleton;
> +import java.beans.ConstructorProperties;
> +import java.util.List;
> +
> +/**
> + * @author Vladimir Shevchenko
> + */
> +@Singleton
> +public class ParseVLANs extends ParseJson<ParseVLANs.VLANs> {
> +    static class VLANs extends PaginatedCollection<VLANInfo> {
> +
> +        @ConstructorProperties({"objects", "meta"})
> +        VLANs(Iterable<VLANInfo> objects, PaginationOptions 
> paginationOptions) {

Why is this constructor package protected?

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

Reply via email to