Implemented restrictions on component connections in the Container.
[utils] / system / general / src / main / java / org / wamblee / system / core / DefaultProvidedInterface.java
1 /*
2  * Copyright 2007 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.core;
17
18 import java.util.Arrays;
19
20 /**
21  * Default implementation of a service descriptor.
22  *
23  * @author Erik Brakkee
24  */
25 public class DefaultProvidedInterface implements ProvidedInterface {
26         
27         private String _name; 
28         private Class[] _interfaces;
29         private String _uniqueId; 
30         
31         /**
32          * Constructs the descriptor. 
33          * @param aInterface Type of service. 
34          */
35         public DefaultProvidedInterface(String aName, Class aInterface) {
36                 this(aName, new Class[] { aInterface }); 
37         }
38         
39         public DefaultProvidedInterface(String aName, Class[] aInterfaces) { 
40                 _name = aName; 
41                 _interfaces = Arrays.copyOf(aInterfaces, aInterfaces.length);
42                 _uniqueId = null; 
43         }
44
45         @Override
46         public String getName() {
47                 return _name;
48         }
49         
50         @Override
51         public Class[] getInterfaceTypes() {
52                 return _interfaces;
53         }
54
55         @Override
56         public void setUniqueId(String aId) {
57                 _uniqueId = aId;        
58         }
59         
60         @Override
61         public String getUniqueId() {
62                 return _uniqueId;
63         }
64         
65         @Override
66         public void publish(Object aImplementation, Scope aScope) {
67                 aScope.publishInterface(this, aImplementation);
68         }
69         
70         @Override
71         public String toString() {
72                 StringBuffer buf = new StringBuffer();
73                 buf.append(getName());
74                 buf.append(":");
75                 for (Class intf: _interfaces) { 
76                         buf.append(" " + intf.getName());
77                 }
78                 return buf.toString();
79         }
80 }