99 if (StringUtils.isBlank(migrationSourceFolderPath)) {
100 LOG.debug(
"Migration source folder is not specified.");
104 File migrationFolder =
new File(migrationSourceFolderPath);
105 if (!migrationFolder.exists() || !migrationFolder.isDirectory()) {
106 LOG.error(
"Migration source folder does not exist or is not directory.");
109 return migrationFolder;
static final Logger LOG
Definition: MigrationService.java:22
ConfigurationService configurationService
Definition: MigrationService.java:26
String getMigrationSourceFolderPath()
Definition: OxdServerConfiguration.java:102
OxdServerConfiguration getConfiguration()
Definition: ConfigurationService.java:49