[Devel] busy implementing a component directed acyclic dependency tree

This is needed to start/stop in the right order
This commit is contained in:
Robert von Burg 2013-11-05 20:42:20 +01:00
parent f04dcdb43e
commit 34692df586
1 changed files with 3 additions and 2 deletions

View File

@ -21,6 +21,7 @@ package li.strolch.service;
import java.text.MessageFormat;
import li.strolch.runtime.component.ComponentContainer;
import li.strolch.runtime.component.StrolchComponent;
import ch.eitchnet.privilege.handler.PrivilegeHandler;
import ch.eitchnet.privilege.model.Certificate;
@ -32,8 +33,8 @@ public class SimpleServiceHandler extends StrolchComponent implements ServiceHan
private PrivilegeHandler privilegeHandler;
public SimpleServiceHandler() {
super(ServiceHandler.class.getName());
public SimpleServiceHandler(ComponentContainer container) {
super(container, ServiceHandler.class.getName());
}
@Override