1 package net.sf.fleet.test;
2
3 import java.util.List;
4
5 import net.sf.fleet.annotations.Configuration;
6 import net.sf.fleet.annotations.Module;
7 import net.sf.fleet.annotations.Primitive;
8 import net.sf.fleet.annotations.Service;
9
10 @Module
11 public interface DummyModule {
12 @Service(id="runnable")
13 @Primitive
14 Runnable runnableService();
15
16 @Configuration(id="list")
17 List<String> listConfiguration();
18 }