> @@ -81,4 +81,21 @@ > */ > Set<? extends Role> listRolesOfUserOnTenant(String userId, String > tenantId); > > + /** > + * Creates a new user in keystone. > + * > + * @param userName the name for the new user > + * @param userEmail the email address for the new user > + * @param enabled whether the new user should be enabled > + * @param password the password for the new user > + * @return the created User object > + */ > + User add(String userName, String userEmail, boolean enabled, String > password);
add should be rename create to match the other OpenStack APIs. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/290/files#r9754333
