Ignore:
Timestamp:
03/26/12 17:00:15 (12 years ago)
Author:
rboipsl
Message:

ajout anotations
usermandatory

File:
1 edited

Legend:

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

    r416 r440  
    1919        _isLoginMandatory = annotation.loginMandatory(); 
    2020        _isRequestMandatory = annotation.requestMandatory(); 
     21        _isUserMandatory = annotation.userMandatory(); 
    2122        _isBackofficeMethod = annotation.backofficeMethod(); 
    2223        _params = new ArrayList<ParamDescription>(); 
     
    99100    } 
    100101 
     102 
    101103    public void setRequestMandatory( final Boolean requestMandatory ) 
    102104    { 
    103105        _isRequestMandatory = requestMandatory; 
     106    } 
     107 
     108    public Boolean isUserMandatory() 
     109    { 
     110        return _isUserMandatory; 
     111    } 
     112 
     113    public void setUserMandatory( final Boolean userMandatory ) 
     114    { 
     115        _isUserMandatory = userMandatory; 
    104116    } 
    105117 
     
    136148    private Boolean _isLoginMandatory; 
    137149    private Boolean _isRequestMandatory; 
     150    private Boolean _isUserMandatory; 
    138151    private Boolean _isBackofficeMethod; 
    139152    @Nullable 
Note: See TracChangeset for help on using the changeset viewer.