Class GitHubRepo
- java.lang.Object
-
- org.springframework.social.github.api.GitHubRepo
-
- All Implemented Interfaces:
Serializable
public class GitHubRepo extends Object implements Serializable
A GitHub repo.- Author:
- Willie Wheeler (willie.wheeler@gmail.com)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GitHubRepo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCloneUrl()StringgetDescription()StringgetGitUrl()StringgetHtmlUrl()LonggetId()StringgetName()StringgetSshUrl()StringgetSvnUrl()StringgetUrl()voidsetCloneUrl(String cloneUrl)voidsetDescription(String description)voidsetGitUrl(String gitUrl)voidsetHtmlUrl(String htmlUrl)voidsetId(Long id)voidsetName(String name)voidsetSshUrl(String sshUrl)voidsetSvnUrl(String svnUrl)voidsetUrl(String url)
-
-
-
Method Detail
-
getId
public Long getId()
-
setId
public void setId(Long id)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
getUrl
public String getUrl()
-
setUrl
public void setUrl(String url)
-
getHtmlUrl
public String getHtmlUrl()
-
setHtmlUrl
public void setHtmlUrl(String htmlUrl)
-
getCloneUrl
public String getCloneUrl()
-
setCloneUrl
public void setCloneUrl(String cloneUrl)
-
getGitUrl
public String getGitUrl()
-
setGitUrl
public void setGitUrl(String gitUrl)
-
getSshUrl
public String getSshUrl()
-
setSshUrl
public void setSshUrl(String sshUrl)
-
getSvnUrl
public String getSvnUrl()
-
setSvnUrl
public void setSvnUrl(String svnUrl)
-
-