// load properties
PropertiesProvider properties = PropertiesProvider.getInstance();
// build init object
Initialization init = new Initialization();
// file names
init.setFile1Name(properties.getNameForInputFile1());
init.setFile2Name(properties.getNameForInputFile2());
// page images
init.setDisplayPageImages(properties.isDisplayPageImages());
init.setPageImageUrlFile1(properties.getPageImagesFile1Url());
init.setPageImageUrlFile2(properties.getPageImagesFile2Url());
init.setPageImagePreviewUrlFile1(properties.getPageImagesFile1PreviewUrl());
init.setPageImagePreviewUrlFile2(properties.getPageImagesFile2PreviewUrl());
return init;
}