> + @Named("ListProfileDefinitions")
> + @GET
> + @Path("/profiles/{profile}/definitions")
> + @XMLResponseParser(ListProfileDefinitionsHandler.class)
> + @Fallback(Fallbacks.EmptyListOnNotFoundOr404.class)
> + List<ProfileDefinition> listDefinitions(@PathParam("profile") String
> profile);
> +
> + /**
> + * The Get Definition operation returns an existing profile definition.
> + *
> + * @param profile profile name.
> + * @return profile definition.
> + */
> + @Named("GetProfileDefinition")
> + @GET
> + @Path("/profiles/{profile}/definitions/1")
Should this leading "/1" be hardcoded?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/151/files#r27516971