> +   @Path("/{id}/add_router_interface")
> +   @MapBinder(EmptyOptions.class)
> +   @Fallback(Fallbacks.NullOnNotFoundOr404.class)
> +   @Nullable
> +   RouterInterface addInterfaceForSubnet(@PathParam("id") String routerId, 
> @PayloadParam("subnet_id") String subnetId);
> +
> +   /**
> +    * Add a interface to a router to connect to the specified port
> +    *
> +    * @param routerId the id of the router to create the interface at
> +    * @param portId the id of the port to connect with the interface
> +    * @return the newly-created router interface
> +    */
> +   @Named("router:addInterfaceForPort")
> +   @PUT
> +   @Path("{id}/add_router_interface")

`@Path("/{id}/add_router_interface")` Missing the leading `/`

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

Reply via email to