private static MultiReadableArchive openCombinedReadableArchive(
final ServiceLocator habitat,
final ReadableArchive facadeRA,
final ReadableArchive clientRA) throws IOException {
final MultiReadableArchive combinedRA = habitat.getService(MultiReadableArchive.class);
combinedRA.open(facadeRA.getURI(), clientRA.getURI());
return combinedRA;
}
protected URI[] toURIs(final String uriList) {
String[] uris = uriList.split(" ");