Interface RegisterUIService

All Known Implementing Classes:
RegisterUIServiceImpl

@Path("/register") public interface RegisterUIService
  • Method Details

    • getRegister

      @GET @Path("/") @Produces("text/html") String getRegister()
    • doRegister

      @POST @Path("/") @Produces("text/html") javax.ws.rs.core.Response doRegister(@FormParam("token") String token, @FormParam("email") String email, @FormParam("name") String name, @FormParam("dateFormat") String dateFormat, @FormParam("timeZone") String timeZone, @FormParam("password") String password, @FormParam("passwordConfirm") String passwordConfirm, @FormParam("roles") List<String> roles)