use of org.apache.jmeter.protocol.http.control.CacheManager in project jmeter by apache.
the class CacheManagerGui method modifyTestElement.
/* Implements JMeterGUIComponent.modifyTestElement(TestElement) */
@Override
public void modifyTestElement(TestElement element) {
configureTestElement(element);
final CacheManager cacheManager = (CacheManager) element;
cacheManager.setClearEachIteration(clearEachIteration.isSelected());
cacheManager.setUseExpires(useExpires.isSelected());
try {
cacheManager.setMaxSize(Integer.parseInt(maxCacheSize.getText()));
} catch (NumberFormatException e) {
// NOOP
}
}
Aggregations