Interface XldUserProfileService


  • @Path("user/profiles")
    @Produces({"application/xml","application/json"})
    public interface XldUserProfileService
    • 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)