src/protocol/http/src/main/java/org/apache/jmeter/protocol/http/config/gui/HttpDefaultsGui.java [59:83]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private static final long serialVersionUID = 242L;

    private UrlConfigGui urlConfigGui;
    private final JBooleanPropertyEditor retrieveEmbeddedResources = new JBooleanPropertyEditor(
            HTTPSamplerBaseSchema.INSTANCE.getRetrieveEmbeddedResources(),
            JMeterUtils.getResString("web_testing_retrieve_images"));
    private final JBooleanPropertyEditor concurrentDwn = new JBooleanPropertyEditor(
            HTTPSamplerBaseSchema.INSTANCE.getConcurrentDownload(),
            JMeterUtils.getResString("web_testing_concurrent_download"));
    private JTextField concurrentPool;
    private final JBooleanPropertyEditor useMD5 = new JBooleanPropertyEditor(
            HTTPSamplerBaseSchema.INSTANCE.getStoreAsMD5(),
            JMeterUtils.getResString("response_save_as_md5")); // $NON-NLS-1$
    private JTextField embeddedAllowRE; // regular expression used to match against embedded resource URLs to allow
    private JTextField embeddedExcludeRE; // regular expression used to match against embedded resource URLs to discard
    private JTextField sourceIpAddr; // does not apply to Java implementation
    private final JComboBox<String> sourceIpType = new JComboBox<>(HTTPSamplerBase.getSourceTypeList());
    private JTextField proxyScheme;
    private JTextField proxyHost;
    private JTextField proxyPort;
    private JTextField proxyUser;
    private JPasswordField proxyPass;
    private final JComboBox<String> httpImplementation = new JComboBox<>(HTTPSamplerFactory.getImplementations());
    private JTextField connectTimeOut;
    private JTextField responseTimeOut;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/protocol/http/src/main/java/org/apache/jmeter/protocol/http/control/gui/HttpTestSampleGui.java [61:85]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private static final long serialVersionUID = 242L;

    private UrlConfigGui urlConfigGui;
    private final JBooleanPropertyEditor retrieveEmbeddedResources = new JBooleanPropertyEditor(
            HTTPSamplerBaseSchema.INSTANCE.getRetrieveEmbeddedResources(),
            JMeterUtils.getResString("web_testing_retrieve_images"));
    private final JBooleanPropertyEditor concurrentDwn = new JBooleanPropertyEditor(
            HTTPSamplerBaseSchema.INSTANCE.getConcurrentDownload(),
            JMeterUtils.getResString("web_testing_concurrent_download"));
    private JTextField concurrentPool;
    private final JBooleanPropertyEditor useMD5 = new JBooleanPropertyEditor(
            HTTPSamplerBaseSchema.INSTANCE.getStoreAsMD5(),
            JMeterUtils.getResString("response_save_as_md5")); // $NON-NLS-1$
    private JTextField embeddedAllowRE; // regular expression used to match against embedded resource URLs to allow
    private JTextField embeddedExcludeRE; // regular expression used to match against embedded resource URLs to exclude
    private JTextField sourceIpAddr; // does not apply to Java implementation
    private final JComboBox<String> sourceIpType = new JComboBox<>(HTTPSamplerBase.getSourceTypeList());
    private JTextField proxyScheme;
    private JTextField proxyHost;
    private JTextField proxyPort;
    private JTextField proxyUser;
    private JPasswordField proxyPass;
    private final JComboBox<String> httpImplementation = new JComboBox<>(HTTPSamplerFactory.getImplementations());
    private JTextField connectTimeOut;
    private JTextField responseTimeOut;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



