Trying to delete file to resolve md5 mismatch.


git-svn-id: https://svn.apache.org/repos/asf/incubator/felix/trunk@487683 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/ipojo/src/main/java/org/apache/felix/ipojo/architecture/ComponentDescription.java b/ipojo/src/main/java/org/apache/felix/ipojo/architecture/ComponentDescription.java
deleted file mode 100644
index 55f0c62..0000000
--- a/ipojo/src/main/java/org/apache/felix/ipojo/architecture/ComponentDescription.java
+++ /dev/null
@@ -1,132 +0,0 @@
-/* 
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.felix.ipojo.architecture;
-
-/**
- * Component Description.
- * @author <a href="mailto:felix-dev@incubator.apache.org">Felix Project Team</a>
- */
-public class ComponentDescription {
-
-    /**
-     * The Component class name.
-     * This String is the identifier of the component.
-     */
-    private String m_className;
-
-    /**
-     * The name of the component (instance).
-     */
-    private String m_name;
-
-    /**
-     * Handlers of the component instance.
-     */
-    private HandlerDescription[] m_handlers = new HandlerDescription[0];
-
-    /**
-     * Created Instances of the components.
-     */
-    private String[] m_instances = new String[0];
-
-    /**
-     * State of the component (VALID / UNRESOLVED).
-     */
-    private int m_state;
-
-    /**
-     * BundleId of the component.
-     */
-    private long m_bundleId;
-
-    /**
-     * Constructor.
-     * @param name : the name of the component (the class name).
-     * @param state : the state of the component.
-     */
-    public ComponentDescription(String name, String className, int state, long bundleId) {
-        m_name = name;
-        m_className = className;
-        m_state = state;
-        m_instances = new String[0];
-        m_handlers = new HandlerDescription[0];
-        m_bundleId = bundleId;
-    }
-
-    /**
-     * @return the name of the component.
-     */
-    public String getName() { return m_name; }
-
-    /**
-     * @return the created instances
-     */
-    public String[] getInstances() { return m_instances; }
-
-    /**
-     * Set the instances array.
-     */
-    public void setInstances(String[] instances) { m_instances = instances; }
-
-    /**
-     * @return : the class name of the component
-     */
-    public String getClassName() { return m_className; }
-
-    /**
-     * @return the live handler list
-     */
-    public HandlerDescription[] getHandlers() { return m_handlers; }
-
-    /**
-     * Add an handler description to the list.
-     * @param hd : the handler description to add
-     */
-    public void addHandler(HandlerDescription hd) {
-        // Verify that the dependency description is not already in the array.
-        for (int i = 0; (i < m_handlers.length); i++) {
-            if (m_handlers[i] == hd) {
-                return; //NOTHING TO DO, the description is already in the array
-            }
-        }
-            // The component Description is not in the array, add it
-            HandlerDescription[] newHd = new HandlerDescription[m_handlers.length + 1];
-            System.arraycopy(m_handlers, 0, newHd, 0, m_handlers.length);
-            newHd[m_handlers.length] = hd;
-            m_handlers = newHd;
-    }
-
-    /**
-     * Set the state of the component.
-     * @param i : the state
-     */
-    public void setState(int i) { m_state = i; }
-
-    /**
-     * @return the state of the component.
-     */
-    public int getState() { return m_state; }
-
-    /**
-     * @return the bundle id owning the component implementation class.
-     */
-    public long getBundleId() { return m_bundleId; }
-
-
-}