@Override
public String getNextView() {
if (nextView == null) {
NextView annotation = this.getClass().getAnnotation(NextView.class);
if (annotation != null) {
nextView = annotation.value();
} else {
// TODO Lançar exceção orientando o usuário a anotar sua classe com essa anotação aí ou então
// sobre-escrever este método.
}
}