now making sure that ids re prefixed by the config id.
[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.ArrayList;
19 import java.util.List;
20
21 import org.wamblee.xmlrouter.common.Id;
22 import org.wamblee.xmlrouter.config.Config;
23
24 /**
25  * Composite config. The composite config
26  * 
27  * @author Erik Brakkee
28  * 
29  * @param <T>
30  */
31 public class CompositeConfig<T> implements ExtendedConfig<T> {
32
33     private Id<Config> id;
34     private List<T> configs;
35
36     public CompositeConfig(Id<Config> aId) {
37         id = aId;
38         configs = new ArrayList<T>();
39     }
40
41     @Override
42     public Id<Config> getId() {
43         // TODO test id.
44         return id;
45     }
46
47     public void add(Config<T> aConfig) {
48         // TODO check duplicate config.
49         for (T item : aConfig.values()) {
50             configs.add(item);
51         }
52     }
53
54     @Override
55     public List<T> values() {
56         return configs;
57     }
58
59     @Override
60     public boolean remove(Id<T> aId) {
61         notSupported();
62         return false;
63     }
64
65     @Override
66     public void add(T aT) {
67         notSupported();
68     }
69
70     private void notSupported() {
71         throw new RuntimeException("readonly instance");
72     }
73 }