private final ServiceRegistry services;
private final Iterable<Metadata<Extension>> extensions;
public AbstractDeployment(Collection<BeanDeploymentArchive> beanDeploymentArchives, Iterable<Metadata<Extension>> extensions)
{
this.services = new SimpleServiceRegistry();
this.beanDeploymentArchives = new ArrayList<BeanDeploymentArchive>(beanDeploymentArchives);
this.extensions = extensions;
configureServices();
}