Package | Description |
---|---|
org.mojavemvc.core |
Modifier and Type | Class and Description |
---|---|
class |
BaseActionSignature
There is one instance of this class in the application per @Action
method per controller.
|
class |
DefaultActionSignature |
class |
HttpMethodActionSignature |
Modifier and Type | Method and Description |
---|---|
ActionSignature |
MappedControllerDatabase.getActionMethodSignature(Class<?> controllerClass,
String action)
Get the ActionSignature associated with the given controller class.
|
ActionSignature |
ControllerDatabase.getActionMethodSignature(Class<?> controllerClass,
String action)
Get the ActionSignature associated with the given controller class.
|
ActionSignature |
HttpActionResolver.getActionSignature() |
ActionSignature |
ActionResolver.getActionSignature() |
ActionSignature |
MappedControllerDatabase.getAfterActionMethodFor(Class<?> controllerClass)
Get the ActionSignature annotated with @AfterAction for the given
controller class.
|
ActionSignature |
ControllerDatabase.getAfterActionMethodFor(Class<?> controllerClass)
Get the ActionSignature annotated with @AfterAction for the given
controller class.
|
ActionSignature |
MappedControllerDatabase.getAfterActionMethodForInterceptor(Class<?> interceptorClass)
Get the ActionSignature annotated with @AfterAction for the given
interceptor class.
|
ActionSignature |
ControllerDatabase.getAfterActionMethodForInterceptor(Class<?> interceptorClass)
Get the ActionSignature annotated with @AfterAction for the given
interceptor class.
|
ActionSignature |
MappedControllerDatabase.getAfterConstructMethodFor(Class<?> controllerClass)
Get the ActionSignature annotated with @AfterConstruct for the given
controller class.
|
ActionSignature |
ControllerDatabase.getAfterConstructMethodFor(Class<?> controllerClass)
Get the ActionSignature annotated with @AfterConstruct for the given
controller class.
|
ActionSignature |
MappedControllerDatabase.getBeforeActionMethodFor(Class<?> controllerClass)
Get the ActionSignature annotated with @BeforeAction for the given
controller class.
|
ActionSignature |
ControllerDatabase.getBeforeActionMethodFor(Class<?> controllerClass)
Get the ActionSignature annotated with @BeforeAction for the given
controller class.
|
ActionSignature |
MappedControllerDatabase.getBeforeActionMethodForInterceptor(Class<?> interceptorClass)
Get the ActionSignature annotated with @BeforeAction for the given
interceptor class.
|
ActionSignature |
ControllerDatabase.getBeforeActionMethodForInterceptor(Class<?> interceptorClass)
Get the ActionSignature annotated with @BeforeAction for the given
interceptor class.
|
ActionSignature |
MappedControllerDatabase.getDefaultActionMethodFor(Class<?> controllerClass)
Get the ActionSignature annotated with @DefaultAction for the given
controller class.
|
ActionSignature |
ControllerDatabase.getDefaultActionMethodFor(Class<?> controllerClass)
Get the ActionSignature annotated with @DefaultAction for the given
controller class.
|
ActionSignature |
MappedControllerDatabase.getHttpMethodActionSignature(Class<?> controllerClass,
HttpMethod httpMethod)
Get the HTTP method ActionSignature associated with the given controller
class.
|
ActionSignature |
ControllerDatabase.getHttpMethodActionSignature(Class<?> controllerClass,
HttpMethod httpMethod)
Get the HTTP method ActionSignature associated with the given controller
class.
|
Modifier and Type | Method and Description |
---|---|
View |
HttpActionInvoker.invokeAction(Object actionController,
ActionSignature actionSignature) |
View |
ActionInvoker.invokeAction(Object actionController,
ActionSignature actionSignature) |
Copyright © 2011-2012 MojaveMVC.org