(no commit message)
[utils] / system / general / src / main / java / org / wamblee / system / adapters / DefaultContainer.java
1 /*
2  * Copyright 2005-2010 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.system.adapters;
17
18 import org.wamblee.system.container.Container;
19 import org.wamblee.system.core.Component;
20 import org.wamblee.system.core.ProvidedInterface;
21 import org.wamblee.system.core.RequiredInterface;
22
23 /**
24  * 
25  * @author $author$
26  * @version $Revision$
27  */
28 public class DefaultContainer extends Container {
29     /**
30      * Creates a new DefaultContainer object.
31      * 
32      */
33     public DefaultContainer(String aName) {
34         super(aName);
35     }
36
37     @Override
38     public DefaultContainer addComponent(Component aComponent) {
39         super.addComponent(aComponent);
40
41         return this;
42     }
43
44     public DefaultContainer addComponent(String aName,
45         ClassConfiguration aConfiguration) {
46         return addComponent(new ClassAdapter(aName, aConfiguration));
47     }
48
49     public DefaultContainer addComponent(String aName, Object aObject,
50         ObjectConfiguration aConfiguration) {
51         if (!aConfiguration.appliesTo(aObject)) {
52             throw new IllegalArgumentException("Configuration '" +
53                 aConfiguration + "' does nto applu to '" + aObject + "'");
54         }
55
56         return addComponent(new ObjectAdapter(aName, aObject, aConfiguration));
57     }
58
59     @Override
60     public DefaultContainer addRequiredInterface(RequiredInterface aRequired) {
61         super.addRequiredInterface(aRequired);
62
63         return this;
64     }
65
66     @Override
67     public DefaultContainer addProvidedInterface(ProvidedInterface aProvided) {
68         super.addProvidedInterface(aProvided);
69
70         return this;
71     }
72 }