/*
* init the storage
*/
Files.createDirectories(path);
String file = path.toString();
StorageGeneric storage = new StorageDisk(file);
peer.getPeerBean().setStorage(storage);
logger.info(String.format("Using TomP2P with file-storage on %s",
file));
}
}