(no commit message)
[utils] / system / general / src / test / java / org / wamblee / system / Application.java
index 0ebf001841e0a588ef42397ab87a78eb0dc01b72..3825c98962614eaae400c3c68ea1db230b981638 100644 (file)
@@ -3,14 +3,14 @@ package org.wamblee.system;
 import javax.sql.DataSource;
 
 public class Application extends AbstractComponent {
-       private static final RequiredInterfaceDescriptor[] REQUIRED = 
-               new RequiredInterfaceDescriptor[] { 
+       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 ProvidedInterfaceDescriptor[0], REQUIRED); 
+               super("application", aRegistry, new ProvidedInterface[0], REQUIRED); 
        }
 
        @Override