| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
package org.apache.camel.impl; |
| 19 |
|
|
| 20 |
|
import org.apache.camel.Exchange; |
| 21 |
|
import org.apache.camel.Endpoint; |
| 22 |
|
import org.apache.camel.Component; |
| 23 |
|
import org.apache.camel.Consumer; |
| 24 |
|
import org.apache.camel.util.IntrospectionSupport; |
| 25 |
|
|
| 26 |
|
import java.util.Map; |
| 27 |
|
|
| 28 |
|
|
| 29 |
|
|
| 30 |
|
|
| 31 |
|
|
| 32 |
|
|
| 33 |
|
public abstract class ScheduledPollEndpoint<E extends Exchange> extends DefaultEndpoint<E> { |
| 34 |
|
private Map consumerProperties; |
| 35 |
|
|
| 36 |
|
protected ScheduledPollEndpoint(String endpointUri, Component component) { |
| 37 |
1 |
super(endpointUri, component); |
| 38 |
1 |
} |
| 39 |
|
|
| 40 |
|
public Map getConsumerProperties() { |
| 41 |
0 |
return consumerProperties; |
| 42 |
|
} |
| 43 |
|
|
| 44 |
|
public void setConsumerProperties(Map consumerProperties) { |
| 45 |
1 |
this.consumerProperties = consumerProperties; |
| 46 |
1 |
} |
| 47 |
|
|
| 48 |
|
protected void configureConsumer(Consumer<E> consumer) { |
| 49 |
1 |
if (consumerProperties != null) { |
| 50 |
1 |
IntrospectionSupport.setProperties(consumer, consumerProperties); |
| 51 |
|
} |
| 52 |
1 |
} |
| 53 |
|
|
| 54 |
|
public void configureProperties(Map options) { |
| 55 |
1 |
Map consumerProperties = IntrospectionSupport.extractProperties(options, "consumer."); |
| 56 |
1 |
if (consumerProperties != null) { |
| 57 |
1 |
setConsumerProperties(consumerProperties); |
| 58 |
|
} |
| 59 |
1 |
} |
| 60 |
|
|
| 61 |
|
} |