Interface CoAPEndpointBuilderFactory.CoAPEndpointProducerBuilder

  • All Superinterfaces:
    org.apache.camel.builder.EndpointProducerBuilder, org.apache.camel.EndpointProducerResolver
    All Known Subinterfaces:
    CoAPEndpointBuilderFactory.CoAPEndpointBuilder
    Enclosing interface:
    CoAPEndpointBuilderFactory

    public static interface CoAPEndpointBuilderFactory.CoAPEndpointProducerBuilder
    extends org.apache.camel.builder.EndpointProducerBuilder
    Builder for endpoint producers for the CoAP component.
    • Method Detail

      • alias

        default CoAPEndpointBuilderFactory.CoAPEndpointProducerBuilder alias​(String alias)
        Sets the alias used to query the KeyStore for the private key and certificate. This parameter is used when we are enabling TLS with certificates on the service side, and similarly on the client side when TLS is used with certificates and client authentication. If the parameter is not specified then the default behavior is to use the first alias in the keystore that contains a key entry. This configuration parameter does not apply to configuring TLS via a Raw Public Key or a Pre-Shared Key. The option is a: java.lang.String type. Group: common
      • cipherSuites

        default CoAPEndpointBuilderFactory.CoAPEndpointProducerBuilder cipherSuites​(String cipherSuites)
        Sets the cipherSuites String. This is a comma separated String of ciphersuites to configure. If it is not specified, then it falls back to getting the ciphersuites from the sslContextParameters object. The option is a: java.lang.String type. Group: common
      • clientAuthentication

        default CoAPEndpointBuilderFactory.CoAPEndpointProducerBuilder clientAuthentication​(String clientAuthentication)
        Sets the configuration options for server-side client-authentication requirements. The value must be one of NONE, WANT, REQUIRE. If this value is not specified, then it falls back to checking the sslContextParameters.getServerParameters().getClientAuthentication() value. The option is a: java.lang.String type. Group: common
      • recommendedCipherSuitesOnly

        default CoAPEndpointBuilderFactory.CoAPEndpointProducerBuilder recommendedCipherSuitesOnly​(boolean recommendedCipherSuitesOnly)
        The CBC cipher suites are not recommended. If you want to use them, you first need to set the recommendedCipherSuitesOnly option to false. The option is a: boolean type. Default: true Group: common
      • recommendedCipherSuitesOnly

        default CoAPEndpointBuilderFactory.CoAPEndpointProducerBuilder recommendedCipherSuitesOnly​(String recommendedCipherSuitesOnly)
        The CBC cipher suites are not recommended. If you want to use them, you first need to set the recommendedCipherSuitesOnly option to false. The option will be converted to a boolean type. Default: true Group: common
      • sslContextParameters

        default CoAPEndpointBuilderFactory.CoAPEndpointProducerBuilder sslContextParameters​(Object sslContextParameters)
        Set the SSLContextParameters object for setting up TLS. This is required for coapstcp, and for coaps when we are using certificates for TLS (as opposed to RPK or PKS). The option is a: org.apache.camel.support.jsse.SSLContextParameters type. Group: common
      • sslContextParameters

        default CoAPEndpointBuilderFactory.CoAPEndpointProducerBuilder sslContextParameters​(String sslContextParameters)
        Set the SSLContextParameters object for setting up TLS. This is required for coapstcp, and for coaps when we are using certificates for TLS (as opposed to RPK or PKS). The option will be converted to a org.apache.camel.support.jsse.SSLContextParameters type. Group: common
      • trustedRpkStore

        default CoAPEndpointBuilderFactory.CoAPEndpointProducerBuilder trustedRpkStore​(String trustedRpkStore)
        Set the TrustedRpkStore to use to determine trust in raw public keys. The option will be converted to a org.eclipse.californium.scandium.dtls.rpkstore.TrustedRpkStore type. Group: common
      • lazyStartProducer

        default CoAPEndpointBuilderFactory.CoAPEndpointProducerBuilder lazyStartProducer​(boolean lazyStartProducer)
        Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. The option is a: boolean type. Default: false Group: producer
      • lazyStartProducer

        default CoAPEndpointBuilderFactory.CoAPEndpointProducerBuilder lazyStartProducer​(String lazyStartProducer)
        Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. The option will be converted to a boolean type. Default: false Group: producer