1 package org.apache.fulcrum.testcontainer;
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 import org.apache.avalon.framework.component.Component;
18
19
20 /**
21 * Implementation of the test component
22 *
23 * @author <a href="mailto:quintonm@bellsouth.net">Quinton McCombs</a>
24 * @author <a href="mailto:epugh@opensourceconnections.com">Eric Pugh</a>
25 * @version $Id: SimpleComponent.java 223137 2004-10-30 13:18:00Z epugh $
26 */
27 public interface SimpleComponent extends Component
28 {
29
30 static final String ROLE = SimpleComponent.class.getName();
31
32
33 void test();
34
35 public String getAppRoot();
36
37 public String getAppRoot2();
38 }