public static void resetToDefault()

in S3HtsjdkPlugin/src/main/java/com/epam/cmbi/s3/Configuration.java [178:189]


    public static void resetToDefault() {
        System.setProperty(Configuration.CONNECTIONS_NUMBER_PARAMETER,
                Integer.toString(Configuration.DEFAULT_CONNECTIONS_NUMBER));
        System.setProperty(Configuration.MAX_CHUNK_SIZE_PARAMETER,
                Integer.toString(Configuration.DEFAULT_MAX_CHUNK_SIZE));
        System.setProperty(Configuration.MIN_CHUNK_SIZE_PARAMETER,
                Integer.toString(Configuration.DEFAULT_MIN_CHUNK_SIZE));
        System.setProperty(Configuration.CUSTOM_RETRY_COUNT_PARAMETER,
                Integer.toString(Configuration.DEFAULT_CUSTOM_RETRY_COUNT));
        System.setProperty(Configuration.INDEX_URL_PARAMETER, Configuration.DEFAULT_INDEX_URL);
        init();
    }