Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||||||
ScheduledPollEndpoint |
|
| 0.0;0 |
1 | /** |
|
2 | * |
|
3 | * Licensed to the Apache Software Foundation (ASF) under one or more |
|
4 | * contributor license agreements. See the NOTICE file distributed with |
|
5 | * this work for additional information regarding copyright ownership. |
|
6 | * The ASF licenses this file to You under the Apache License, Version 2.0 |
|
7 | * (the "License"); you may not use this file except in compliance with |
|
8 | * the License. You may obtain a copy of the License at |
|
9 | * |
|
10 | * http://www.apache.org/licenses/LICENSE-2.0 |
|
11 | * |
|
12 | * Unless required by applicable law or agreed to in writing, software |
|
13 | * distributed under the License is distributed on an "AS IS" BASIS, |
|
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
15 | * See the License for the specific language governing permissions and |
|
16 | * limitations under the License. |
|
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 | * A base class for {@link Endpoint} which creates a {@link ScheduledPollConsumer} |
|
30 | * |
|
31 | * @version $Revision: 1.1 $ |
|
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 | } |