Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
package org.fabric3.implementation.spring.introspection;
import java.net.URL;
import java.util.List;
import org.fabric3.api.host.stream.Source;
import org.fabric3.api.host.stream.UrlSource;
/**
* A Source for multiple related artifacts; used to introspect multiple application contexts.
*/
public class MultiSource extends UrlSource {
private List sources;
public MultiSource(URL primaryUrl, List sources) {
super(primaryUrl);
this.sources = sources;
}
public List getSources() {
return sources;
}
}