All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.kohsuke.github.GitUser Maven / Gradle / Ivy

There is a newer version: 2.0.0-alpha-2
Show newest version
package org.kohsuke.github;

import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;

import java.util.Date;

import javax.annotation.CheckForNull;

// TODO: Auto-generated Javadoc
/**
 * Represents a user in Git who authors/commits a commit.
 * 

* In contrast, {@link GHUser} is an user of GitHub. Because Git allows a person to use multiple e-mail addresses and * names when creating a commit, there's generally no meaningful mapping between {@link GHUser} and {@link GitUser}. * * @author Kohsuke Kawaguchi */ @SuppressFBWarnings(value = { "UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD", "UWF_UNWRITTEN_FIELD", "NP_UNWRITTEN_FIELD" }, justification = "JSON API") public class GitUser { private String name, email, date, username; /** * Gets the git user name for an author or committer on a git commit. * * @return Human readable name of the user, such as "Kohsuke Kawaguchi" */ public String getName() { return name; } /** * Gets the git email for an author or committer on a git commit. * * @return E-mail address, such as "[email protected]" */ public String getEmail() { return email; } /** * Gets username. Note: it presents only in events. * * @return GitHub username */ @CheckForNull public String getUsername() { return username; } /** * Gets date. * * @return Commit Date. */ public Date getDate() { return GitHubClient.parseDate(date); } /** * Instantiates a new git user. */ public GitUser() { // Empty constructor for Jackson binding } /** * Instantiates a new git user. * * @param user * the user */ public GitUser(GitUser user) { // Copy constructor to convert to GHCommit.GHAuthor name = user.getName(); email = user.getEmail(); date = user.getDate().toString(); username = user.getUsername(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy