Registry.java 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. package riomhaire.lti;
  2. import org.springframework.web.servlet.ModelAndView;
  3. import riomhaire.lti.core.model.LTIMessage;
  4. import riomhaire.lti.core.model.configuration.ClientConfiguration;
  5. import riomhaire.lti.core.model.configuration.ToolConfiguration;
  6. import riomhaire.lti.core.model.interfaces.ApplicationRegistry;
  7. import riomhaire.lti.core.model.interfaces.CommandDispatcher;
  8. import riomhaire.lti.core.model.interfaces.NoKeyResolver;
  9. import riomhaire.lti.core.model.interfaces.UniKeyResolver;
  10. import java.util.Optional;
  11. /**
  12. * ApplicationRegistry is the 'environment' within which commands ... it should contain things like
  13. * downstream service proxies etc.
  14. *
  15. * The registry is also where the command dispatcher resides so that commands can call other commands.
  16. *
  17. * The Environment os specific to the message that the command processes and the responses they generate.
  18. * In this model all commands take the same message model and return the same consistent model.
  19. */
  20. public class Registry implements ApplicationRegistry<ModelAndView,LTIMessage> {
  21. // This is the command dispatcher
  22. private final CommandDispatcher<ModelAndView, ApplicationRegistry<ModelAndView,LTIMessage>, LTIMessage> commandDispatcher;
  23. // We need somewhere to read a tool/partner integration from - this service proxy performs that role.
  24. private final UniKeyResolver<Optional<ClientConfiguration>, String> clientRegistrationResolver;
  25. // This is where most of the tools config is stored
  26. private final NoKeyResolver<Optional<ToolConfiguration>> toolConfigurationResolver;
  27. /**
  28. * Constructor contains all the services and objects to run the application
  29. * @param commandDispatcher
  30. * @param clientRegistrationResolver
  31. * @param toolConfigurationResolver
  32. */
  33. public Registry(CommandDispatcher<ModelAndView, ApplicationRegistry<ModelAndView, LTIMessage>, LTIMessage> commandDispatcher, UniKeyResolver<Optional<ClientConfiguration>, String> clientRegistrationResolver, NoKeyResolver<Optional<ToolConfiguration>> toolConfigurationResolver) {
  34. this.commandDispatcher = commandDispatcher;
  35. this.clientRegistrationResolver = clientRegistrationResolver;
  36. this.toolConfigurationResolver = toolConfigurationResolver;
  37. }
  38. /**
  39. * Return the current client configuration resolver
  40. * @return ClientRegistrationResolver
  41. */
  42. @Override
  43. public UniKeyResolver<Optional<ClientConfiguration>, String> clientRegistrationResolver() {
  44. return clientRegistrationResolver;
  45. }
  46. /**
  47. * Return the current tool configuration resolver
  48. * This is where most of the tool configuration is stored - keys, secrets etc
  49. *
  50. * @return ClientRegistrationResolver
  51. */
  52. @Override
  53. public NoKeyResolver<Optional<ToolConfiguration>> toolConfigurationResolver() {
  54. return toolConfigurationResolver;
  55. }
  56. /**
  57. * Returns access to the current command dispatcher
  58. *
  59. * @return CommandDispatcher
  60. */
  61. @Override
  62. public CommandDispatcher<ModelAndView, ApplicationRegistry<ModelAndView, LTIMessage>, LTIMessage> commandDispatcher() {
  63. return commandDispatcher;
  64. }
  65. }