Ignore:
Timestamp:
03/14/12 14:52:29 (12 years ago)
Author:
vmipsl
Message:

backoffice

File:
1 edited

Legend:

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

    r406 r409  
    2626    /** *********************** VIEWS ***************************** **/ 
    2727    /** *********************************************************** **/ 
    28     @ControllerMethod(view = VIEW_INIT) 
    29     public Map<String, Object> home() 
     28    @ControllerMethod(view = VIEW_INIT)public Map<String, Object> home() 
    3029            throws WebException 
    3130    { 
     
    5049 
    5150        //appel a createxml 
    52         _tapasService.createXMLRequest( jsonTapas ); 
     51        getTapasService().createXMLRequest( jsonTapas ); 
    5352 
    5453        final JSONObject result = new JSONObject(); 
     
    5756    } 
    5857 
    59  
    60     @Required 
    61     public void setTapasService( @NotNull final TapasService tapasService ) 
    62     { 
    63         _tapasService = tapasService; 
    64     } 
    65  
    6658    private static final Log LOGGER = LogFactory.getLog( Controller.class ); 
    6759 
    6860    private static final String VIEW_INIT = "init"; 
    6961    private static final String VIEW_FORM_TAPAS = "project/formTapas"; 
    70  
    71     private TapasService _tapasService; 
    7262} 
Note: See TracChangeset for help on using the changeset viewer.