package org.wamblee.system; import javax.sql.DataSource; public class Application extends AbstractSubSystem { private static final ServiceDescriptor[] REQUIRED = new ServiceDescriptor[] { new DefaultServiceDescriptor(DataSource.class), new DefaultServiceDescriptor(Integer.class) }; public Application() { super("application", new ServiceDescriptor[0], REQUIRED); } @Override protected void doInitialize(String aContext, Service[] aRequiredServices) { // Empty, no services provided externally. } }