Retrieves executor by name @param name Name of the executor to be retrieved @return a string representation of the executor @throws MBeanException error accessing the associated service
(String name)
| 128 | * @throws MBeanException error accessing the associated service |
| 129 | */ |
| 130 | public String getExecutor(String name) throws MBeanException { |
| 131 | Service service = doGetManagedResource(); |
| 132 | Executor executor = service.getExecutor(name); |
| 133 | if (executor != null) { |
| 134 | return executor.toString(); |
| 135 | } else { |
| 136 | return null; |
| 137 | } |
| 138 | } |
| 139 | } |
nothing calls this directly
no test coverage detected