Package com.xebialabs.deployit.core.api
Interface XldUserProfileService
-
@Path("user/profiles") @Produces({"application/xml","application/json"}) public interface XldUserProfileService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreateOrUpdateUserProfile(java.lang.String username, ai.digital.deploy.sql.model.AddUserProfile userProfile)ai.digital.deploy.sql.model.UserProfileViewgetUserProfile(java.lang.String username, java.lang.Boolean loadCredentials)
-
-
-
Method Detail
-
getUserProfile
@GET @Path("{username}") ai.digital.deploy.sql.model.UserProfileView getUserProfile(@PathParam("username") java.lang.String username, @QueryParam("credentials") @DefaultValue("true") java.lang.Boolean loadCredentials)
-
createOrUpdateUserProfile
@PUT @Path("{username}") void createOrUpdateUserProfile(@PathParam("username") java.lang.String username, @RequestBody ai.digital.deploy.sql.model.AddUserProfile userProfile)
-
-