eabbf3e4e45debbe88782c0072b40de4d83fdcad
[xmlrouter] / impl / src / main / java / org / wamblee / xmlrouter / impl / CompositeRouterConfig.java
1 /*
2  * Copyright 2005-2011 the original author or authors.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.wamblee.xmlrouter.impl;
17
18 import java.util.Collection;
19
20 import org.wamblee.xmlrouter.common.Id;
21 import org.wamblee.xmlrouter.config.Config;
22 import org.wamblee.xmlrouter.config.DocumentType;
23 import org.wamblee.xmlrouter.config.Filter;
24 import org.wamblee.xmlrouter.config.RouterConfig;
25 import org.wamblee.xmlrouter.config.Transformation;
26
27 public class CompositeRouterConfig implements ExtendedRouterConfig {
28
29     private static final Id<RouterConfig> ID = new Id<RouterConfig>(
30         "compositerouterconfig");
31     private CompositeConfig<DocumentType> documentTypes;
32     private CompositeConfig<Transformation> transformations;
33     private CompositeConfig<Filter> filters;
34
35     public CompositeRouterConfig(Id<RouterConfig> aId,
36         Collection<RouterConfig> aConfigs) {
37         documentTypes = new CompositeConfig<DocumentType>();
38         transformations = new CompositeConfig<Transformation>();
39         filters = new CompositeConfig<Filter>();
40         for (RouterConfig config : aConfigs) {
41             documentTypes.addConfig(config.documentTypeConfig());
42             transformations.addConfig(config.transformationConfig());
43             filters.addConfig(config.filterConfig());
44         }
45     }
46
47     @Override
48     public Id<RouterConfig> getId() {
49         return ID;
50     }
51
52     @Override
53     public Config<DocumentType> documentTypeConfig() {
54         return documentTypes;
55     }
56
57     @Override
58     public Config<Transformation> transformationConfig() {
59         return transformations;
60     }
61
62     @Override
63     public Config<Filter> filterConfig() {
64         return filters;
65     }
66 }