First version after introduction of meaningful ids and Identifiable interface.
[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 public class CompositeConfig<T> implements ExtendedConfig<T> {
25
26     private Id<Config> id;
27     private List<T> configs;
28
29     public CompositeConfig(Id<Config> aId) {
30         id = aId;
31         configs = new ArrayList<T>();
32     }
33
34     @Override
35     public Id<Config> getId() {
36         // TODO test id.
37         return id;
38     }
39
40     public void add(Config<T> aConfig) {
41         // TODO check duplicate config.
42         for (T item : aConfig.values()) {
43             configs.add(item);
44         }
45     }
46
47     @Override
48     public List<T> values() {
49         return configs;
50     }
51
52     @Override
53     public boolean remove(Id<T> aId) {
54         notSupported();
55         return false;
56     }
57
58     @Override
59     public void add(T aT) {
60         notSupported();
61     }
62
63     private void notSupported() {
64         throw new RuntimeException("readonly instance");
65     }
66 }