* @throws FileSystemException file system configuration could not be build
*/
@Deprecated
public static void initS3Provider(final String awsKeyId, final String awsKey) throws FileSystemException {
// create authenticator
final StaticUserAuthenticator userAuthenticator = new StaticUserAuthenticator(null, awsKeyId, awsKey);
final FileSystemOptions options = S3FileProvider.getDefaultFileSystemOptions();
DefaultFileSystemConfigBuilder.getInstance().setUserAuthenticator(options, userAuthenticator);
log.info("s3 provider initialized");
}