Interface XldUserProfileService


@Path("user/profiles") @Produces({"application/xml","application/json"}) public interface XldUserProfileService
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    createOrUpdateUserProfile(String username, ai.digital.deploy.sql.model.AddUserProfile userProfile)
     
    ai.digital.deploy.sql.model.UserProfileView
    getUserProfile(String username, Boolean loadCredentials)
     
  • Method Details

    • getUserProfile

      @GET @Path("{username}") ai.digital.deploy.sql.model.UserProfileView getUserProfile(@PathParam("username") String username, @QueryParam("credentials") @DefaultValue("true") Boolean loadCredentials)
    • createOrUpdateUserProfile

      @PUT @Path("{username}") void createOrUpdateUserProfile(@PathParam("username") String username, @RequestBody ai.digital.deploy.sql.model.AddUserProfile userProfile)