View Javadoc
1   package fr.paris.lutece.plugins.deployment.util.vcs;
2   
3   import java.util.List;
4   
5   import org.codehaus.jackson.annotate.JsonProperty;
6   
7   public class GitSearchResult
8   {
9   
10      private Integer _bTotalCount;
11  
12      private List<GitSearchRepoItem> _listRepoItem;
13  
14      @JsonProperty( "items" )
15      public List<GitSearchRepoItem> getListRepoItem( )
16      {
17          return _listRepoItem;
18      }
19  
20      @JsonProperty( "items" )
21      public void setListRepoItem( List<GitSearchRepoItem> listRepoItem )
22      {
23          this._listRepoItem = listRepoItem;
24      }
25  
26      @JsonProperty( "total_count" )
27      public Integer getTotalCount( )
28      {
29          return _bTotalCount;
30      }
31  
32      @JsonProperty( "total_count" )
33      public void setTotalCount( Integer bTotalCount )
34      {
35          this._bTotalCount = bTotalCount;
36      }
37  
38  }