in S3HtsjdkPlugin/src/main/java/com/epam/cmbi/s3/Configuration.java [159:166]
private static int getIntProperty(final String name, final int def) {
final String value = System.getProperty(name, Integer.toString(def));
try {
return Integer.parseInt(value);
} catch (IllegalArgumentException e) {
throw new IllegalArgumentException(name + " value is incorrect, value = " + value, e);
}
}