1 /* 2 * Copyright (C) The Apache Software Foundation. All rights reserved. 3 * 4 * This software is published under the terms of the Apache Software License 5 * version 1.1, a copy of which has been included with this distribution in 6 * the LICENSE.txt file. 7 */ 8 package org.apache.avalon.excalibur.container; 9 10 /** 11 * This contains information relating to a component. 12 * (ie BlockInfo, BeanInfo, MailetInfo etc). 13 * 14 * There is currently also two different types - Descriptor and Locator. 15 * Descriptor describes static meta information about component while Locator 16 * locates it in the system. 17 * 18 * @author <a HREF="mailto:peter@apache.org">Peter Donald</a> 19 */ 20 public interface Info 21 { 22 } 23