1 package org.wamblee.system;
3 import javax.sql.DataSource;
5 public class Application extends AbstractSubSystem {
6 private static final ServiceDescriptor[] REQUIRED =
7 new ServiceDescriptor[] {
8 new DefaultServiceDescriptor(DataSource.class),
9 new DefaultServiceDescriptor(Integer.class)
12 public Application() {
13 super("application", new ServiceDescriptor[0], REQUIRED);
17 protected void doInitialize(String aContext, Service[] aRequiredServices) {
18 // Empty, no services provided externally.