Coverage Report - fr.paris.lutece.plugins.releaser.business.ReleaserUser
 
Classes in this File Line Coverage Branch Coverage Complexity
ReleaserUser
84 %
16/19
N/A
1
 
 1  
 package fr.paris.lutece.plugins.releaser.business;
 2  
 
 3  
 import org.codehaus.jackson.annotate.JsonIgnore;
 4  
 import org.hibernate.validator.constraints.NotEmpty;
 5  
 
 6  2
 public class ReleaserUser
 7  
 {
 8  
 
 9  
     private String  _strSvnSiteAccountLogin;
 10  
     private String  _strSvnSiteAccountPassword;
 11  
     private String  _strSvnComponentAccountLogin;
 12  
     private String  _strSvnComponentAccountPassword;
 13  
     @NotEmpty( message = "#i18n{releaser.validation.releaseruser.GithubComponentAccountLogin.notEmpty}" )
 14  
     private String  _strGithubComponentAccountLogin;
 15  
     @NotEmpty( message = "#i18n{releaser.validation.releaseruser.GithubComponentAccountPassword.notEmpty}" )
 16  
     private String  _strGithubComponentAccountPassword;
 17  
    
 18  
     
 19  
     
 20  
     public String getSvnSiteAccountLogin( )
 21  
     {
 22  1
         return _strSvnSiteAccountLogin;
 23  
     }
 24  
 
 25  
     public void setSvnSiteAccountLogin( String _strSvnSiteAccountLogin )
 26  
     {
 27  1
         this._strSvnSiteAccountLogin = _strSvnSiteAccountLogin;
 28  1
     }
 29  
     @JsonIgnore
 30  
     public String getSvnSiteAccountPassword( )
 31  
     {
 32  1
         return _strSvnSiteAccountPassword;
 33  
     }
 34  
     @JsonIgnore
 35  
     public void setSvnSiteAccountPassword( String _strSvnSiteAccountPassword )
 36  
     {
 37  1
         this._strSvnSiteAccountPassword = _strSvnSiteAccountPassword;
 38  1
     }
 39  
 
 40  
     public String getSvnComponentAccountLogin( )
 41  
     {
 42  0
         return _strSvnComponentAccountLogin;
 43  
     }
 44  
 
 45  
     public void setSvnComponentAccountLogin( String _strSvnComponentAccountLogin )
 46  
     {
 47  1
         this._strSvnComponentAccountLogin = _strSvnComponentAccountLogin;
 48  1
     }
 49  
 
 50  
     @JsonIgnore
 51  
     public String getSvnComponentAccountPassword( )
 52  
     {
 53  0
         return _strSvnComponentAccountPassword;
 54  
     }
 55  
     @JsonIgnore
 56  
     public void setSvnComponentAccountPassword( String _strSvnComponentAccountPassword )
 57  
     {
 58  1
         this._strSvnComponentAccountPassword = _strSvnComponentAccountPassword;
 59  1
     }
 60  
 
 61  
     public String getGithubComponentAccountLogin( )
 62  
     {
 63  1
         return _strGithubComponentAccountLogin;
 64  
     }
 65  
 
 66  
     public void setGithubComponentAccountLogin( String _strGithubComponentAccountLogin )
 67  
     {
 68  2
         this._strGithubComponentAccountLogin = _strGithubComponentAccountLogin;
 69  2
     }
 70  
     
 71  
     @JsonIgnore
 72  
     public String getGithubComponentAccountPassword( )
 73  
     {
 74  0
         return _strGithubComponentAccountPassword;
 75  
     }
 76  
     @JsonIgnore
 77  
     public void setGithubComponentAccountPassword( String _strGithubComponentAccountPassword )
 78  
     {
 79  2
         this._strGithubComponentAccountPassword = _strGithubComponentAccountPassword;
 80  2
     }
 81  
     
 82  
     
 83  
      
 84  
 
 85  
 }