if ( commandLine.hasOption(S3_PROXY) )
{
awsClientConfig = new PropertyBasedS3ClientConfig(new File(commandLine.getOptionValue(S3_PROXY)));
}
BackupProvider backupProvider = null;
if ( "true".equalsIgnoreCase(commandLine.getOptionValue(S3_BACKUP)) )
{
backupProvider = new S3BackupProvider(new S3ClientFactoryImpl(), awsCredentials, awsClientConfig, s3Region);
}
else if ( "true".equalsIgnoreCase(commandLine.getOptionValue(FILESYSTEMBACKUP)) )