|
@@ -17,29 +17,36 @@ import java.util.HashMap;
|
|
|
*/
|
|
|
@Slf4j
|
|
|
@NoArgsConstructor
|
|
|
-public class LTIMessageDispatcher implements CommandDispatcher<ModelAndView, ApplicationRegistry, LTIMessage> {
|
|
|
+public class LTIMessageDispatcher implements CommandDispatcher<ModelAndView, ApplicationRegistry<ModelAndView,LTIMessage>, LTIMessage> {
|
|
|
// This stores the mapping of command to command handler
|
|
|
- private final HashMap<String, Command<ModelAndView, ApplicationRegistry, LTIMessage>> commands = new HashMap<>();
|
|
|
+ private final HashMap<String, Command<ModelAndView, ApplicationRegistry<ModelAndView,LTIMessage>, LTIMessage>> commands = new HashMap<>();
|
|
|
|
|
|
// This is the action that is (optionally) executed if no match is made
|
|
|
- private Command<ModelAndView, ApplicationRegistry, LTIMessage> defaultCommand;
|
|
|
+ private Command<ModelAndView, ApplicationRegistry<ModelAndView,LTIMessage>, LTIMessage> defaultCommand;
|
|
|
|
|
|
/**
|
|
|
- * Adds a command handler for goven command
|
|
|
- *
|
|
|
- * @param commandName we allow same command to handle multiple requests
|
|
|
- * @param command does the work
|
|
|
- * @return reference to dispatcher to allow fluent style usage.
|
|
|
+ * This adds a mapping of a message type to the command that can handle that type
|
|
|
+ * At the moment its a 1-1 mapping
|
|
|
+ * @param commandName name of command ... we allow this because we want a command to potentially respond to more than one message type
|
|
|
+ * @param command implementor
|
|
|
+ * @return Command dispatcher so we can have some form of fluent style construction.
|
|
|
*/
|
|
|
@Override
|
|
|
- public CommandDispatcher<ModelAndView, ApplicationRegistry, LTIMessage> addCommand(String commandName, Command<ModelAndView, ApplicationRegistry, LTIMessage> command) {
|
|
|
+ public CommandDispatcher<ModelAndView, ApplicationRegistry<ModelAndView,LTIMessage>, LTIMessage> addCommand(String commandName, Command<ModelAndView, ApplicationRegistry<ModelAndView,LTIMessage>, LTIMessage> command) {
|
|
|
commands.put(commandName, command);
|
|
|
return this;
|
|
|
}
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
+ * This is called by an invoker with
|
|
|
+ *
|
|
|
+ * @param registry to execute within
|
|
|
+ * @param message the message to process.. the implementer of this interface should have a strategy of mapping message to command
|
|
|
+ * @return response from executing the command
|
|
|
+ */
|
|
|
@Override
|
|
|
- public ModelAndView dispatch(ApplicationRegistry registry, LTIMessage message) {
|
|
|
+ public ModelAndView dispatch(ApplicationRegistry<ModelAndView,LTIMessage> registry, LTIMessage message) {
|
|
|
var mav = new ModelAndView("nop");
|
|
|
// If we have a handler for this command execute it
|
|
|
if (message != null && commands.containsKey(message.getMessageType())) {
|
|
@@ -50,7 +57,12 @@ public class LTIMessageDispatcher implements CommandDispatcher<ModelAndView, App
|
|
|
return mav;
|
|
|
}
|
|
|
|
|
|
- public void setDefaultCommand(Command<ModelAndView, ApplicationRegistry, LTIMessage> defaultCommand) {
|
|
|
+ /**
|
|
|
+ * This implementation allows a default action to be taken if no mapping is found. This is the setter for that
|
|
|
+ *
|
|
|
+ * @param defaultCommand what command/action to execute if no mapping is found - something to generate an error
|
|
|
+ */
|
|
|
+ public void setDefaultCommand(Command<ModelAndView, ApplicationRegistry<ModelAndView,LTIMessage>, LTIMessage> defaultCommand) {
|
|
|
this.defaultCommand = defaultCommand;
|
|
|
}
|
|
|
|