/* */ }
/* 278 */ if ("endpointActivation".equals(actionName))
/* */ {
/* 280 */ if (params.length != 2)
/* 281 */ throw new IllegalArgumentException("Wrong number of parameters for " + actionName);
/* 282 */ MessageEndpointFactory messageEndpointFactory = (MessageEndpointFactory)params[0];
/* 283 */ ActivationSpec activationSpec = (ActivationSpec)params[1];
/* 284 */ endpointActivation(messageEndpointFactory, activationSpec);
/* 285 */ return null;
/* */ }
/* 287 */ if ("endpointDeactivation".equals(actionName))
/* */ {
/* 289 */ if (params.length != 2)
/* 290 */ throw new IllegalArgumentException("Wrong number of parameters for " + actionName);
/* 291 */ MessageEndpointFactory messageEndpointFactory = (MessageEndpointFactory)params[0];
/* 292 */ ActivationSpec activationSpec = (ActivationSpec)params[1];
/* 293 */ endpointDeactivation(messageEndpointFactory, activationSpec);
/* 294 */ return null;
/* */ }
/* 296 */ return super.internalInvoke(actionName, params, signature);