Class Aws2SesResource

java.lang.Object
org.apache.camel.quarkus.test.support.aws2.BaseAws2Resource
org.apache.camel.quarkus.component.aws2.ses.it.Aws2SesResource

@Path("/aws2-ses") @ApplicationScoped public class Aws2SesResource extends org.apache.camel.quarkus.test.support.aws2.BaseAws2Resource
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    (package private) org.apache.camel.FluentProducerTemplate
     
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    jakarta.ws.rs.core.Response
    post(String message, String from, String to, String subject, String returnPath)
     

    Methods inherited from class org.apache.camel.quarkus.test.support.aws2.BaseAws2Resource

    initializeDefaultCredentials, isUseDefaultCredentials, setUseDefaultCredentials

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • producerTemplate

      @Inject org.apache.camel.FluentProducerTemplate producerTemplate
  • Constructor Details

    • Aws2SesResource

      public Aws2SesResource()
  • Method Details

    • post

      @Path("/send") @POST @Consumes("text/plain") @Produces("text/plain") public jakarta.ws.rs.core.Response post(String message, @HeaderParam("x-from") String from, @HeaderParam("x-to") String to, @HeaderParam("x-subject") String subject, @HeaderParam("x-returnPath") String returnPath) throws Exception
      Throws:
      Exception