MCPcopy Index your code
hub / github.com/SeleniumHQ/selenium / invoke

Method invoke

java/src/org/openqa/selenium/grid/jmx/MBean.java:276–288  ·  view source on GitHub ↗
(String actionName, Object[] params, String[] signature)

Source from the content-addressed store, hash-verified

274 }
275
276 @Override
277 public @Nullable Object invoke(String actionName, Object[] params, String[] signature) {
278 try {
279 OperationInfo operationInfo = operationMap.get(actionName);
280 if (operationInfo == null) {
281 return null;
282 }
283 return operationInfo.method.invoke(bean, params);
284 } catch (IllegalAccessException | InvocationTargetException e) {
285 LOG.severe("Error during execution: " + e.getMessage());
286 return null;
287 }
288 }
289
290 @Override
291 public MBeanInfo getMBeanInfo() {

Callers 12

modifyLogLevelMethod · 0.45
performMethod · 0.45
runMainMethod · 0.45
generateObjectNameMethod · 0.45
getAttributeMethod · 0.45
setAttributeMethod · 0.45
callCreateMethodMethod · 0.45
createSessionFactoryMethod · 0.45
acceptMethod · 0.45
applyMethod · 0.45
convertUsingMethodMethod · 0.45

Calls 3

severeMethod · 0.80
getMethod · 0.65
getMessageMethod · 0.45

Tested by 1

modifyLogLevelMethod · 0.36