/* */ }
/* 231 */ if ("endpointActivation".equals(actionName))
/* */ {
/* 233 */ if (params.length != 2)
/* 234 */ throw new IllegalArgumentException("Wrong number of parameters for " + actionName);
/* 235 */ MessageEndpointFactory messageEndpointFactory = (MessageEndpointFactory)params[0];
/* 236 */ ActivationSpec activationSpec = (ActivationSpec)params[1];
/* 237 */ endpointActivation(messageEndpointFactory, activationSpec);
/* 238 */ return null;
/* */ }
/* 240 */ if ("endpointDeactivation".equals(actionName))
/* */ {
/* 242 */ if (params.length != 2)
/* 243 */ throw new IllegalArgumentException("Wrong number of parameters for " + actionName);
/* 244 */ MessageEndpointFactory messageEndpointFactory = (MessageEndpointFactory)params[0];
/* 245 */ ActivationSpec activationSpec = (ActivationSpec)params[1];
/* 246 */ endpointDeactivation(messageEndpointFactory, activationSpec);
/* 247 */ return null;
/* */ }
/* 249 */ return super.internalInvoke(actionName, params, signature);