Ignore:
Timestamp:
03/15/12 12:53:14 (12 years ago)
Author:
vmipsl
Message:

login application
servlet data
ControllerEponge?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tapas/web/src/com/ether/Controller.java

    r411 r414  
    99import org.apache.commons.logging.Log; 
    1010import org.apache.commons.logging.LogFactory; 
    11 import org.jetbrains.annotations.NotNull; 
    12 import org.springframework.beans.factory.annotation.Required; 
    1311 
    1412import java.util.HashMap; 
     
    2624    /** *********************** VIEWS ***************************** **/ 
    2725    /** *********************************************************** **/ 
    28     @ControllerMethod(view = VIEW_INIT)public Map<String, Object> home() 
     26    @ControllerMethod(view = VIEW_FORM_TAPAS) 
     27    public Map<String, Object> viewForm() 
    2928            throws WebException 
    3029    { 
    31         return new HashMap<String, Object>(); 
    32     } 
    33  
    34     @ControllerMethod(view = VIEW_FORM_TAPAS) 
    35     public Map<String, Object> viewForm() 
    36             throws WebException{ 
    3730        return new HashMap<String, Object>(); 
    3831    } 
     
    5851    private static final Log LOGGER = LogFactory.getLog( Controller.class ); 
    5952 
    60     private static final String VIEW_INIT = "init"; 
    6153    private static final String VIEW_FORM_TAPAS = "project/formTapas"; 
    6254} 
Note: See TracChangeset for help on using the changeset viewer.