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