> @@ -328,6 +329,36 @@ DatacenterLimitsDto updateLimits(
> @Consumes(UsersDto.BASE_MEDIA_TYPE)
> @JAXBResponseParser
> UsersDto listUsers(@EndpointLink("users") @BinderParam(BindToPath.class)
> EnterpriseDto enterprise);
> +
> + /**
> + * List users with options.
> + *
> + * @param options
> + * Filtering options.
> + * @return The list of Users.
> + */
> + @Named("user:list")
> + @GET
> + @Path("/users")
> + @Consumes(UsersDto.BASE_MEDIA_TYPE)
> + @JAXBResponseParser
> + UsersDto listUsers(UserOptions options);
All user list methods are relative to the enterprise resource. There is no
`/admin/users` resource exposed in the Abiquo API, so I'd just remove this
method.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/22/files#r5704062