2 * Copyright 2007 the original author or authors.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
16 package org.wamblee.system.core;
18 import java.util.ArrayList;
19 import java.util.Arrays;
20 import java.util.Collections;
21 import java.util.List;
25 * Default implementation of a service descriptor.
27 * @author Erik Brakkee
29 public class DefaultProvidedInterface implements ProvidedInterface {
32 private Class[] _interfaces;
33 private String _uniqueId;
36 * Constructs the descriptor.
37 * @param aInterface Type of service.
39 public DefaultProvidedInterface(String aName, Class aInterface) {
40 this(aName, new Class[] { aInterface });
43 public DefaultProvidedInterface(String aName, Class[] aInterfaces) {
45 _interfaces = Arrays.copyOf(aInterfaces, aInterfaces.length);
50 public String getName() {
55 public Class[] getInterfaceTypes() {
60 public void setUniqueId(String aId) {
65 public String getUniqueId() {
70 public void publish(Object aImplementation, Scope aScope) {
71 aScope.publishInterface(this, aImplementation);
75 public String toString() {
76 StringBuffer buf = new StringBuffer();
77 buf.append(getName());
79 for (Class intf: _interfaces) {
80 buf.append(" " + intf.getName());
82 return buf.toString();
86 public boolean equals(Object aObj) {
87 if ( !(aObj instanceof DefaultProvidedInterface)) {
90 DefaultProvidedInterface provided = (DefaultProvidedInterface)aObj;
91 return getEqualsRepresentation().equals(provided.getEqualsRepresentation());
95 public int hashCode() {
96 return getEqualsRepresentation().hashCode();
100 private String getEqualsRepresentation() {
101 List<String> result = new ArrayList<String>();
102 for (Class cls: _interfaces) {
103 result.add(cls.getName());
105 Collections.sort(result);
107 for (String str: result) {