Even more atomic router configuration.
[xmlrouter] / impl / src / main / java / org / wamblee / xmlrouter / impl / CompositeConfig.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.LinkedHashMap;
19 import java.util.Map;
20
21 import org.wamblee.xmlrouter.common.Id;
22 import org.wamblee.xmlrouter.config.Config;
23
24 public class CompositeConfig<T> implements ExtendedConfig<T> {
25
26     private Map<Id<T>, T> configs;
27
28     public CompositeConfig() {
29         configs = new LinkedHashMap<Id<T>, T>();
30     }
31
32     public void add(Config<T> aConfig) {
33         for (Id<T> id : aConfig.map().keySet()) {
34             configs.put(id, aConfig.map().get(id));
35         }
36     }
37
38     @Override
39     public Map<Id<T>, T> map() {
40         return configs;
41     }
42
43     @Override
44     public boolean remove(Id<T> aId) {
45         notSupported();
46         return false;
47     }
48
49     private void notSupported() {
50         throw new RuntimeException("readonly instance");
51     }
52
53     @Override
54     public Id<T> add(T aT) {
55         notSupported();
56         return null;
57     }
58 }