> + * 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);
Same questions as above regarding collection vs. iterable, and a `@see ...` Javadoc comment to link to overloaded version? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-openstack/pull/47/files#r7546862