controlEngine.addActionHandler(actionType, actionHandler);
}
private void addRequestMethodHandler(Object object, Method method) {
checkControlEngine();
RequestMethod annotation = method.getAnnotation(RequestMethod.class);
ActionId<RequestAction<Object, Object>> actionType = ActionId.cm(annotation.value());
RequestMethodHandler actionHandler = new RequestMethodHandler(object, method);
controlEngine.addActionHandler(actionType, actionHandler);
}