View Javadoc
1   package fr.paris.lutece.plugins.deployment.util.vcs;
2   
3   import org.codehaus.jackson.annotate.JsonProperty;
4   
5   public class GitSearchRepoItem
6   {
7   
8       private String _strName;
9       private String _strCloneUrl;
10      private String _strContentsUrl;
11      private String _strFullName;
12  
13      public String getName( )
14      {
15          return _strName;
16      }
17  
18      public void setName( String _strName )
19      {
20          this._strName = _strName;
21      }
22  
23      @JsonProperty( "clone_url" )
24      public String getCloneUrl( )
25      {
26          return _strCloneUrl;
27      }
28  
29      @JsonProperty( "clone_url" )
30      public void setCloneUrl( String _strCloneUrl )
31      {
32          this._strCloneUrl = _strCloneUrl;
33      }
34  
35      @JsonProperty( "contents_url" )
36      public String getContentsUrl( )
37      {
38          return _strContentsUrl;
39      }
40  
41      @JsonProperty( "contents_url" )
42      public void setContentsUrl( String _strContentsUrl )
43      {
44          this._strContentsUrl = _strContentsUrl;
45      }
46  
47      @JsonProperty( "full_name" )
48      public String getFullName( )
49      {
50          return _strFullName;
51      }
52  
53      @JsonProperty( "full_name" )
54      public void setFullName( String _strFullName )
55      {
56          this._strFullName = _strFullName;
57      }
58  
59  }