}
void configureCustomInterceptors(Element element, Configuration config) {
if (element == null) return; //this element might be missing
CustomInterceptorsElementParser parser = new CustomInterceptorsElementParser();
List<CustomInterceptorConfig> interceptorConfigList = parser.parseCustomInterceptors(element);
config.setCustomInterceptors(interceptorConfigList);
}
void configureInvocationBatching(Element element, Configuration config) {
if (element != null) {