Ignore:
Timestamp:
12/05/11 17:51:54 (13 years ago)
Author:
vmipsl
Message:

Login BO
visu sous-menus

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ether_megapoli/trunk/common/implementation/com/ether/MethodDescription.java

    r269 r285  
    1515        _method = method; 
    1616        _view = annotation.view(); 
     17        _defaultView = annotation.defaultView(); 
    1718        _isJsonResult = annotation.jsonResult(); 
    1819        _isLoginMandatory = annotation.loginMandatory(); 
     
    3637    { 
    3738        return _view; 
     39    } 
     40 
     41    @Nullable 
     42    public String getDefaultView() 
     43    { 
     44        return _defaultView; 
     45    } 
     46 
     47    public void setDefaultView( @Nullable final String defaultView ) 
     48    { 
     49        _defaultView = defaultView; 
    3850    } 
    3951 
     
    100112    @NotNull 
    101113    private String _view; 
     114    @Nullable 
     115    private String _defaultView; 
    102116    private Boolean _isJsonResult; 
    103117    @Nullable 
Note: See TracChangeset for help on using the changeset viewer.