Class VertxHttpService

java.lang.Object
org.apache.camel.quarkus.component.http.vertx.VertxHttpService

@Path("/service") @ApplicationScoped public class VertxHttpService extends Object
  • Constructor Details

    • VertxHttpService

      public VertxHttpService()
  • Method Details

    • multipartFormParams

      @POST @Path("/multipart-form-params") @Consumes("application/x-www-form-urlencoded") @Produces("text/plain") public String multipartFormParams(@FormParam("organization") String organization, @FormParam("project") String project)
    • multipartFormData

      @POST @Path("/multipart-form-data") @Consumes("multipart/form-data") @Produces("text/plain") public String multipartFormData(Map<String,String> parts)
    • customVertxOptions

      @GET @Path("/custom-vertx-options") public void customVertxOptions()
    • getSecuredContent

      @GET @Path("/session-management/secure") @Produces("text/plain") public String getSecuredContent(@CookieParam("sessionId") String cookie)
    • login

      @GET @Path("/session-management/login") @Produces("text/plain") public jakarta.ws.rs.core.Response login(@HeaderParam("username") String username, @HeaderParam("password") String password)