Fixing ticket #450, lifeCycle = Permanent => boilerplate reduction

This commit is contained in:
Viktor Klang 2010-10-04 11:18:10 +02:00
parent 099820a258
commit 3efb427ca1
27 changed files with 103 additions and 112 deletions

View file

@ -16,12 +16,12 @@ public class Boot {
new Component(
SimpleService.class,
SimpleServiceImpl.class,
new LifeCycle(new Permanent()),
new Permanent(),
1000),
new Component(
PersistentSimpleService.class,
PersistentSimpleServiceImpl.class,
new LifeCycle(new Permanent()),
new Permanent(),
1000)
}).supervise();
}