Interface JcrEndpointBuilderFactory.JcrEndpointProducerBuilder

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

    public static interface JcrEndpointBuilderFactory.JcrEndpointProducerBuilder
    extends org.apache.camel.builder.EndpointProducerBuilder
    Builder for endpoint producers for the JCR component.
    • Method Detail

      • deep

        default JcrEndpointBuilderFactory.JcrEndpointProducerBuilder deep​(boolean deep)
        When isDeep is true, events whose associated parent node is at absPath or within its subgraph are received. The option is a: boolean type. Default: false Group: common
      • eventTypes

        default JcrEndpointBuilderFactory.JcrEndpointProducerBuilder eventTypes​(int eventTypes)
        eventTypes (a combination of one or more event types encoded as a bit mask value such as javax.jcr.observation.Event.NODE_ADDED, javax.jcr.observation.Event.NODE_REMOVED, etc.). The option is a: int type. Group: common
      • eventTypes

        default JcrEndpointBuilderFactory.JcrEndpointProducerBuilder eventTypes​(String eventTypes)
        eventTypes (a combination of one or more event types encoded as a bit mask value such as javax.jcr.observation.Event.NODE_ADDED, javax.jcr.observation.Event.NODE_REMOVED, etc.). The option will be converted to a int type. Group: common
      • nodeTypeNames

        default JcrEndpointBuilderFactory.JcrEndpointProducerBuilder nodeTypeNames​(String nodeTypeNames)
        When a comma separated nodeTypeName list string is set, only events whose associated parent node has one of the node types (or a subtype of one of the node types) in this list will be received. The option is a: java.lang.String type. Group: common
      • noLocal

        default JcrEndpointBuilderFactory.JcrEndpointProducerBuilder noLocal​(boolean noLocal)
        If noLocal is true, then events generated by the session through which the listener was registered are ignored. Otherwise, they are not ignored. The option is a: boolean type. Default: false Group: common
      • noLocal

        default JcrEndpointBuilderFactory.JcrEndpointProducerBuilder noLocal​(String noLocal)
        If noLocal is true, then events generated by the session through which the listener was registered are ignored. Otherwise, they are not ignored. The option will be converted to a boolean type. Default: false Group: common
      • sessionLiveCheckInterval

        default JcrEndpointBuilderFactory.JcrEndpointProducerBuilder sessionLiveCheckInterval​(long sessionLiveCheckInterval)
        Interval in milliseconds to wait before each session live checking The default value is 60000 ms. The option is a: long type. Default: 60000 Group: common
      • sessionLiveCheckInterval

        default JcrEndpointBuilderFactory.JcrEndpointProducerBuilder sessionLiveCheckInterval​(String sessionLiveCheckInterval)
        Interval in milliseconds to wait before each session live checking The default value is 60000 ms. The option will be converted to a long type. Default: 60000 Group: common
      • sessionLiveCheckIntervalOnStart

        default JcrEndpointBuilderFactory.JcrEndpointProducerBuilder sessionLiveCheckIntervalOnStart​(long sessionLiveCheckIntervalOnStart)
        Interval in milliseconds to wait before the first session live checking. The default value is 3000 ms. The option is a: long type. Default: 3000 Group: common
      • sessionLiveCheckIntervalOnStart

        default JcrEndpointBuilderFactory.JcrEndpointProducerBuilder sessionLiveCheckIntervalOnStart​(String sessionLiveCheckIntervalOnStart)
        Interval in milliseconds to wait before the first session live checking. The default value is 3000 ms. The option will be converted to a long type. Default: 3000 Group: common
      • uuids

        default JcrEndpointBuilderFactory.JcrEndpointProducerBuilder uuids​(String uuids)
        When a comma separated uuid list string is set, only events whose associated parent node has one of the identifiers in the comma separated uuid list will be received. The option is a: java.lang.String type. Group: common
      • lazyStartProducer

        default JcrEndpointBuilderFactory.JcrEndpointProducerBuilder 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 JcrEndpointBuilderFactory.JcrEndpointProducerBuilder 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