> +   @ResponseParser(ParseRouterDetails.class)
> +   @Fallback(KeystoneFallbacks.EmptyPaginatedCollectionOnNotFoundOr404.class)
> +   PaginatedCollection<? extends Router> listInDetail(PaginationOptions 
> options);
> +
> +   /**
> +    * Returns the specific router.
> +    *
> +    * @param id the id of the router to return
> +    * @return Router or null if not found
> +    */
> +   @Named("router:get")
> +   @GET
> +   @Path("/{id}")
> +   @SelectJson("router")
> +   @Fallback(Fallbacks.NullOnNotFoundOr404.class)
> +   Router get(@PathParam("id") String id);

Add `@Nullable` to return type?

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

Reply via email to