@Target(value=TYPE) @Retention(value=RUNTIME) @Deprecated public @interface AbstractAction
Ex:
@AbstractAction(id="/index", view="/testcontroller/index.jsp")
public class TestController{
@View(id="/testcontroller/perfil.jsp")
public void perfilAction(){
...
}
}
| Modifier and Type | Required Element and Description |
|---|---|
String[] |
id
Deprecated.
Identificação da ação.
|
String |
view
Deprecated.
Identificação da visão.
|
| Modifier and Type | Optional Element and Description |
|---|---|
String |
dispatcher
Deprecated.
Define como o fluxo de execução será direcionado para a visão.
|
public abstract String[] id
public abstract String view
public abstract String dispatcher
DispatcherType.Copyright © 2018 Brandao. All rights reserved.