> + * Returns all routers currently defined in Neutron for the current
> tenant.
> + *
> + * @return the list of all routers configured for the tenant
> + */
> + @Named("router:list")
> + @GET
> + @ResponseParser(ParseRouterDetails.class)
> + @Transform(ParseRouterDetails.ToPagedIterable.class)
> + @Fallback(Fallbacks.EmptyPagedIterableOnNotFoundOr404.class)
> + PagedIterable<? extends Router> listInDetail();
> +
> + @Named("router:list")
> + @GET
> + @ResponseParser(ParseRouterDetails.class)
> + @Fallback(KeystoneFallbacks.EmptyPaginatedCollectionOnNotFoundOr404.class)
> + PaginatedCollection<? extends Router> listInDetail(PaginationOptions
> options);
Look above comments.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/47/files#r7887020