Package org.kohsuke.github
Class GHPerson
- java.lang.Object
-
- org.kohsuke.github.GHObject
-
- org.kohsuke.github.GHPerson
-
- Direct Known Subclasses:
GHOrganization,GHUser
public abstract class GHPerson extends GHObject
Common part ofGHUserandGHOrganization.- Author:
- Kohsuke Kawaguchi
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringavatar_urlThe avatar url.protected StringbioThe twitter username.protected StringblogThe twitter username.protected StringcompanyThe twitter username.protected StringemailThe twitter username.protected intfollowersThe public gists.protected intfollowingThe public gists.protected booleanhireableThe hireable.protected Stringhtml_urlThe html url.protected StringlocationThe twitter username.protected StringloginThe avatar url.protected StringnameThe twitter username.protected intpublic_gistsThe public gists.protected intpublic_reposThe public gists.protected booleansite_adminThe hireable.protected Integertotal_private_reposThe total private repos.protected Stringtwitter_usernameThe twitter username.protected StringtypeThe twitter username.-
Fields inherited from class org.kohsuke.github.GHObject
responseHeaderFields
-
-
Constructor Summary
Constructors Constructor Description GHPerson()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description StringgetAvatarUrl()Returns a string of the avatar image URL.StringgetBlog()Gets the blog URL of this user.StringgetCompany()Gets the company name of this user, like "Sun Microsystems, Inc."DategetCreatedAt()Gets the created at.StringgetEmail()Gets the e-mail address of the user.intgetFollowersCount()Gets followers count.intgetFollowingCount()Gets following count.StringgetGravatarId()Deprecated.No longer available in the v3 API.URLgetHtmlUrl()Gets the html url.StringgetLocation()Gets the location of this user, like "Santa Clara, California".StringgetLogin()Gets the login ID of this user, like 'kohsuke'.StringgetName()Gets the human-readable name of the user, like "Kohsuke Kawaguchi".intgetPublicGistCount()Gets public gist count.intgetPublicRepoCount()Gets public repo count.Map<String,GHRepository>getRepositories()Gets the public repositories this user owns.GHRepositorygetRepository(String name)Gets repository.GitHubgetRoot()Deprecated.For access to theGitHubinstance, use a local copy instead of pulling it out of objects.Optional<Integer>getTotalPrivateRepoCount()Gets total private repo count.StringgetTwitterUsername()Gets the Twitter Username of this user, like "GitHub".StringgetType()Gets the type.DategetUpdatedAt()Gets the updated at.booleanisSiteAdmin()Gets the site_admin field.Iterable<List<GHRepository>>iterateRepositories(int pageSize)Deprecated.abstract PagedIterable<GHEventInfo>listEvents()Lists events for an organization or an user.PagedIterable<GHRepository>listRepositories()Lists up all the repositories using a 30 items page size.PagedIterable<GHRepository>listRepositories(int pageSize)Lists up all the repositories using the specified page size.protected voidpopulate()Fully populate the data by retrieving missing data.-
Methods inherited from class org.kohsuke.github.GHObject
getId, getNodeId, getResponseHeaderFields, getUrl, setResponseHeaderFields, toString
-
-
-
-
Field Detail
-
login
protected String login
The avatar url.
-
avatar_url
protected String avatar_url
The avatar url.
-
location
protected String location
The twitter username.
-
blog
protected String blog
The twitter username.
-
email
protected String email
The twitter username.
-
bio
protected String bio
The twitter username.
-
name
protected String name
The twitter username.
-
company
protected String company
The twitter username.
-
type
protected String type
The twitter username.
-
twitter_username
protected String twitter_username
The twitter username.
-
html_url
protected String html_url
The html url.
-
followers
protected int followers
The public gists.
-
following
protected int following
The public gists.
-
public_repos
protected int public_repos
The public gists.
-
public_gists
protected int public_gists
The public gists.
-
site_admin
protected boolean site_admin
The hireable.
-
hireable
protected boolean hireable
The hireable.
-
total_private_repos
protected Integer total_private_repos
The total private repos.
-
-
Method Detail
-
populate
protected void populate() throws IOExceptionFully populate the data by retrieving missing data.Depending on the original API call where this object is created, it may not contain everything.
- Throws:
IOException- the io exception
-
getRepositories
public Map<String,GHRepository> getRepositories() throws IOException
Gets the public repositories this user owns.To list your own repositories, including private repositories, use
GHMyself.listRepositories()- Returns:
- the repositories
- Throws:
IOException- the io exception
-
listRepositories
public PagedIterable<GHRepository> listRepositories()
Lists up all the repositories using a 30 items page size.Unlike
getRepositories(), this does not wait until all the repositories are returned.- Returns:
- the paged iterable
-
listRepositories
public PagedIterable<GHRepository> listRepositories(int pageSize)
Lists up all the repositories using the specified page size.- Parameters:
pageSize- size for each page of items returned by GitHub. Maximum page size is 100. UnlikegetRepositories(), this does not wait until all the repositories are returned.- Returns:
- the paged iterable
-
iterateRepositories
@Deprecated public Iterable<List<GHRepository>> iterateRepositories(int pageSize)
Deprecated.Loads repository list in a paginated fashion.For a person with a lot of repositories, GitHub returns the list of repositories in a paginated fashion. Unlike
getRepositories(), this method allows the caller to start processing data as it arrives.Every
Iterator.next()call results in I/O. Exceptions that occur during the processing is wrapped intoError.- Parameters:
pageSize- the page size- Returns:
- the iterable
-
getRepository
public GHRepository getRepository(String name) throws IOException
Gets repository.- Parameters:
name- the name- Returns:
- null if the repository was not found
- Throws:
IOException- the io exception
-
listEvents
public abstract PagedIterable<GHEventInfo> listEvents() throws IOException
Lists events for an organization or an user.- Returns:
- the paged iterable
- Throws:
IOException- the io exception
-
getGravatarId
@Deprecated public String getGravatarId()
Deprecated.No longer available in the v3 API.Gravatar ID of this user, like 0cb9832a01c22c083390f3c5dcb64105.- Returns:
- the gravatar id
-
getAvatarUrl
public String getAvatarUrl()
Returns a string of the avatar image URL.- Returns:
- the avatar url
-
getLogin
public String getLogin()
Gets the login ID of this user, like 'kohsuke'.- Returns:
- the login
-
getName
public String getName() throws IOException
Gets the human-readable name of the user, like "Kohsuke Kawaguchi".- Returns:
- the name
- Throws:
IOException- the io exception
-
getCompany
public String getCompany() throws IOException
Gets the company name of this user, like "Sun Microsystems, Inc."- Returns:
- the company
- Throws:
IOException- the io exception
-
getLocation
public String getLocation() throws IOException
Gets the location of this user, like "Santa Clara, California".- Returns:
- the location
- Throws:
IOException- the io exception
-
getTwitterUsername
public String getTwitterUsername() throws IOException
Gets the Twitter Username of this user, like "GitHub".- Returns:
- the Twitter username
- Throws:
IOException- the io exception
-
getCreatedAt
public Date getCreatedAt() throws IOException
Gets the created at.- Overrides:
getCreatedAtin classGHObject- Returns:
- the created at
- Throws:
IOException- Signals that an I/O exception has occurred.
-
getUpdatedAt
public Date getUpdatedAt() throws IOException
Gets the updated at.- Overrides:
getUpdatedAtin classGHObject- Returns:
- the updated at
- Throws:
IOException- Signals that an I/O exception has occurred.
-
getBlog
public String getBlog() throws IOException
Gets the blog URL of this user.- Returns:
- the blog
- Throws:
IOException- the io exception
-
getHtmlUrl
public URL getHtmlUrl()
Gets the html url.- Specified by:
getHtmlUrlin classGHObject- Returns:
- the html url
-
getEmail
public String getEmail() throws IOException
Gets the e-mail address of the user.- Returns:
- the email
- Throws:
IOException- the io exception
-
getPublicGistCount
public int getPublicGistCount() throws IOExceptionGets public gist count.- Returns:
- the public gist count
- Throws:
IOException- the io exception
-
getPublicRepoCount
public int getPublicRepoCount() throws IOExceptionGets public repo count.- Returns:
- the public repo count
- Throws:
IOException- the io exception
-
getFollowingCount
public int getFollowingCount() throws IOExceptionGets following count.- Returns:
- the following count
- Throws:
IOException- the io exception
-
getFollowersCount
public int getFollowersCount() throws IOExceptionGets followers count.- Returns:
- the followers count
- Throws:
IOException- the io exception
-
getType
public String getType() throws IOException
Gets the type. This is either "User" or "Organization".- Returns:
- the type
- Throws:
IOException- the io exception
-
isSiteAdmin
public boolean isSiteAdmin() throws IOExceptionGets the site_admin field.- Returns:
- the site_admin field
- Throws:
IOException- the io exception
-
getTotalPrivateRepoCount
public Optional<Integer> getTotalPrivateRepoCount() throws IOException
Gets total private repo count.- Returns:
- the total private repo count
- Throws:
IOException- the io exception
-
getRoot
@Deprecated public GitHub getRoot()
Deprecated.For access to theGitHubinstance, use a local copy instead of pulling it out of objects.Get the rootGitHubinstance for this object.- Returns:
- the root
GitHubinstance
-
-