Adds a class to the list of locations in which a template will be searched,
this setting will only be used by a templating engine that supports it (e.g: Freemarker)
in these cases the templating engine will call the getResource() method on the specified
class to retrieve a template
Adds a web application path to the list of locations in which a template will be searched,
this setting will only be used by a templating engine that supports it (e.g: Freemarker)
in these cases the templating engine will call the Servlet context's getResource() method
to passing the name to getResource()
This class manages the loading of a config loader (yes, the config loader itself
is configurable, and the parameter specifying its name is in a sense a bootstrap
parameter value).
This interface is used to abstract the algorithm used to:
map a HTTP request to a controller and
map a an unhandled exception to a an error handler controller
getFile(String) -
Method in interface com.acciente.induction.controller.Form
Return the value of the specified HTML form parameter as a file handle, this method should only be used to access
a form parameter that represents an uploded file
Returns the path to which uploaded files that are too large to be kept in memory
should be written, if no directory is specified all files are kept in memory
A redirect object defined in terms of the controller or view class to which the client should redirect,
Induction uses the redirect resolver to map the controller or view name to a URL.
A redirect object defined in terms of the controller or view class to which the client should redirect,
Induction uses the redirect resolver to map the controller or view name to a URL.
A redirect object defined in terms of the controller and method to which the client should redirect,
Induction uses the redirect resolver to map the controller or view name to a URL.
A redirect object defined in terms of the controller and method to which the client should redirect,
Induction uses the redirect resolver to map the controller or view name to a URL.
Used to set a fully qualified class name that implements the templating engine interface
(the templating engine interface is com.acciente.induction.template.TemplatingEngine)
Used to set a model pool for use in model-to-model dendency injection (note the cyclic relationship
between ModelFactory class and the ModelPool class, also the same relationship between the object
instances)
This method exists to set the redirect resolver after construction of the model factory since there is
a cyclic dependency between the redirect resolver and the model factory
This method exists to set the templating engine after construction of the model factory since there is
a cyclic dependency between the templating engine and the model factory