The specifies the scope of the bean. The Scope:
  • request: means to maintain the state for the time of a request
  • session: means to maintain the state for the time of a session (between page views)
  • none: means that the bean will be created but not put into a scope.
Documentation / Reference
Task Runner