- IAppConfig - Interface in org.spincast.quickstart.config
-
Application's custom configurations.
- IAppController - Interface in org.spincast.quickstart.controller
-
An application controller.
- IAppHandler - Interface in org.spincast.quickstart.exchange
-
The only purpose of this interface is to make it
easier to declare an handler as "IAppHandler"
instead of "IHandler<IAppRequestContext>".
- IAppRequestContext - Interface in org.spincast.quickstart.exchange
-
Custom type which allows our application to
extend the default request context and add customs methods
and add-ons provided by plugins.
- IAppRouter - Interface in org.spincast.quickstart.exchange
-
The only purpose of this interface is to make it
easier to inject the application specific router by using
"IAppRouter" instead of "IRouter<IAppRequestContext>".
- indexPage(IAppRequestContext) - Method in class org.spincast.quickstart.controller.AppController
-
- indexPage(IAppRequestContext) - Method in interface org.spincast.quickstart.controller.IAppController
-
Route handler for the "/" index page.
- installRoutingPlugin() - Method in class org.spincast.quickstart.guice.AppModule
-
Inline, we override the router implementation bound by the
"spincast-routing" plugin, so our custom class is used.