(no commit message)
[utils] / system / general / src / test / java / org / wamblee / system / Application.java
index 47c92af88405a1edae2990ff5c4c350e4c826078..3825c98962614eaae400c3c68ea1db230b981638 100644 (file)
@@ -3,14 +3,14 @@ package org.wamblee.system;
 import javax.sql.DataSource;
 
 public class Application extends AbstractComponent {
-       private static final InterfaceDescriptor[] REQUIRED = 
-               new InterfaceDescriptor[] { 
+       private static final RequiredInterface[] REQUIRED = 
+               new RequiredInterface[] { 
                        new DefaultRequiredInterfaceDescriptor("datasource", DataSource.class), 
                        new DefaultRequiredInterfaceDescriptor("integer", Integer.class)
        };
        
        public Application(ServiceRegistry aRegistry) {
-               super("application", aRegistry, new InterfaceDescriptor[0], REQUIRED); 
+               super("application", aRegistry, new ProvidedInterface[0], REQUIRED); 
        }
 
        @Override