()
| 192 | } |
| 193 | |
| 194 | public static MessageManager getManager() { |
| 195 | try { |
| 196 | checkAndInitialize(); |
| 197 | |
| 198 | if (manager != null) { |
| 199 | return manager; |
| 200 | } else { |
| 201 | return NullMessageManager.NULL_MESSAGE_MANAGER; |
| 202 | } |
| 203 | } catch (Exception e) { |
| 204 | errorHandler(e); |
| 205 | return NullMessageManager.NULL_MESSAGE_MANAGER; |
| 206 | } |
| 207 | } |
| 208 | |
| 209 | public static MessageProducer getProducer() { |
| 210 | try { |
no test coverage detected