Uses of Class
org.eclipse.jgit.lib.PersonIdent
-
Packages that use PersonIdent Package Description org.eclipse.jgit.api High-level API commands (the porcelain of JGit).org.eclipse.jgit.awtui org.eclipse.jgit.blame Computing blame/annotate information of files.org.eclipse.jgit.gitrepo org.eclipse.jgit.gpg.bc.internal org.eclipse.jgit.http.server.resolver org.eclipse.jgit.internal.storage.file File based repository storage.org.eclipse.jgit.internal.storage.reftable org.eclipse.jgit.junit org.eclipse.jgit.lib Core API for repository, config, refs, object database.org.eclipse.jgit.merge Content and commit history merge algorithms.org.eclipse.jgit.pgm org.eclipse.jgit.pgm.debug org.eclipse.jgit.pgm.internal org.eclipse.jgit.revwalk Walking revision graphs (commit history).org.eclipse.jgit.transport Transport (fetch/push) for different protocols.org.eclipse.jgit.util Utility classes. -
-
Uses of PersonIdent in org.eclipse.jgit.api
Fields in org.eclipse.jgit.api declared as PersonIdent Modifier and Type Field Description private PersonIdent
CommitCommand. author
private PersonIdent
CommitCommand. committer
private PersonIdent
StashCreateCommand. person
private PersonIdent
TagCommand. tagger
Methods in org.eclipse.jgit.api that return PersonIdent Modifier and Type Method Description PersonIdent
CommitCommand. getAuthor()
Get the authorPersonIdent
CommitCommand. getCommitter()
Get the committerPersonIdent
TagCommand. getTagger()
Get thetagger
who created the tag.private PersonIdent
RebaseCommand. parseAuthor()
(package private) PersonIdent
RebaseCommand. parseAuthor(byte[] raw)
Methods in org.eclipse.jgit.api with parameters of type PersonIdent Modifier and Type Method Description CommitCommand
CommitCommand. setAuthor(PersonIdent author)
Sets the author for thiscommit
.CommitCommand
CommitCommand. setCommitter(PersonIdent committer)
Sets the committer for thiscommit
.StashCreateCommand
StashCreateCommand. setPerson(PersonIdent person)
Set the person to use as the author and committer in the commits madeTagCommand
TagCommand. setTagger(PersonIdent tagger)
Sets the tagger of the tag.(package private) java.lang.String
RebaseCommand. toAuthorScript(PersonIdent author)
private void
RebaseCommand. updateStashRef(ObjectId commitId, PersonIdent refLogIdent, java.lang.String refLogMessage)
private void
StashCreateCommand. updateStashRef(ObjectId commitId, PersonIdent refLogIdent, java.lang.String refLogMessage)
-
Uses of PersonIdent in org.eclipse.jgit.awtui
Fields in org.eclipse.jgit.awtui declared as PersonIdent Modifier and Type Field Description (package private) PersonIdent
CommitGraphPane.CommitTableModel. lastAuthor
Methods in org.eclipse.jgit.awtui that return PersonIdent Modifier and Type Method Description (package private) PersonIdent
CommitGraphPane.CommitTableModel. authorFor(PlotCommit<SwingCommitList.SwingLane> c)
-
Uses of PersonIdent in org.eclipse.jgit.blame
Fields in org.eclipse.jgit.blame declared as PersonIdent Modifier and Type Field Description private PersonIdent[]
BlameResult. sourceAuthors
private PersonIdent[]
BlameResult. sourceCommitters
Methods in org.eclipse.jgit.blame that return PersonIdent Modifier and Type Method Description (package private) PersonIdent
Candidate.BlobCandidate. getAuthor()
(package private) PersonIdent
Candidate. getAuthor()
(package private) PersonIdent
Candidate.HeadCandidate. getAuthor()
PersonIdent
BlameGenerator. getSourceAuthor()
Get source authorPersonIdent
BlameResult. getSourceAuthor(int idx)
Get the author that provided the specified line of the result.PersonIdent
BlameGenerator. getSourceCommitter()
Get source committerPersonIdent
BlameResult. getSourceCommitter(int idx)
Get the committer that provided the specified line of the result. -
Uses of PersonIdent in org.eclipse.jgit.gitrepo
Fields in org.eclipse.jgit.gitrepo declared as PersonIdent Modifier and Type Field Description private PersonIdent
RepoCommand. author
Methods in org.eclipse.jgit.gitrepo with parameters of type PersonIdent Modifier and Type Method Description RepoCommand
RepoCommand. setAuthor(PersonIdent author)
Set the author/committer for the bare repository commit. -
Uses of PersonIdent in org.eclipse.jgit.gpg.bc.internal
Methods in org.eclipse.jgit.gpg.bc.internal with parameters of type PersonIdent Modifier and Type Method Description boolean
BouncyCastleGpgSigner. canLocateSigningKey(java.lang.String gpgSigningKey, PersonIdent committer, CredentialsProvider credentialsProvider)
boolean
BouncyCastleGpgSigner. canLocateSigningKey(java.lang.String gpgSigningKey, PersonIdent committer, CredentialsProvider credentialsProvider, GpgConfig config)
private BouncyCastleGpgKey
BouncyCastleGpgSigner. locateSigningKey(java.lang.String gpgSigningKey, PersonIdent committer, BouncyCastleGpgKeyPassphrasePrompt passphrasePrompt)
void
BouncyCastleGpgSigner. sign(CommitBuilder commit, java.lang.String gpgSigningKey, PersonIdent committer, CredentialsProvider credentialsProvider)
void
BouncyCastleGpgSigner. signObject(ObjectBuilder object, java.lang.String gpgSigningKey, PersonIdent committer, CredentialsProvider credentialsProvider, GpgConfig config)
-
Uses of PersonIdent in org.eclipse.jgit.http.server.resolver
Methods in org.eclipse.jgit.http.server.resolver that return PersonIdent Modifier and Type Method Description private static PersonIdent
DefaultReceivePackFactory. toPersonIdent(javax.servlet.http.HttpServletRequest req, java.lang.String user)
-
Uses of PersonIdent in org.eclipse.jgit.internal.storage.file
Fields in org.eclipse.jgit.internal.storage.file declared as PersonIdent Modifier and Type Field Description private PersonIdent
ReflogEntryImpl. who
Methods in org.eclipse.jgit.internal.storage.file that return PersonIdent Modifier and Type Method Description PersonIdent
FileReftableDatabase.FileReftableRefUpdate. getRefLogIdent()
PersonIdent
ReflogEntryImpl. getWho()
Get user performing the changeMethods in org.eclipse.jgit.internal.storage.file with parameters of type PersonIdent Modifier and Type Method Description private byte[]
ReflogWriter. encode(ObjectId oldId, ObjectId newId, PersonIdent ident, java.lang.String message)
ReflogWriter
ReflogWriter. log(java.lang.String refName, ObjectId oldId, ObjectId newId, PersonIdent ident, java.lang.String message)
Write the given entry information to the ref's log -
Uses of PersonIdent in org.eclipse.jgit.internal.storage.reftable
Methods in org.eclipse.jgit.internal.storage.reftable that return PersonIdent Modifier and Type Method Description private PersonIdent
BlockReader. readPersonIdent()
Methods in org.eclipse.jgit.internal.storage.reftable with parameters of type PersonIdent Modifier and Type Method Description void
ReftableWriter. writeLog(java.lang.String ref, long updateIndex, PersonIdent who, ObjectId oldId, ObjectId newId, java.lang.String message)
Write one reflog entry to the reftable.Constructors in org.eclipse.jgit.internal.storage.reftable with parameters of type PersonIdent Constructor Description LogEntry(java.lang.String refName, long updateIndex, PersonIdent who, ObjectId oldId, ObjectId newId, java.lang.String message)
-
Uses of PersonIdent in org.eclipse.jgit.junit
Fields in org.eclipse.jgit.junit declared as PersonIdent Modifier and Type Field Description protected PersonIdent
LocalDiskRepositoryTestCase. author
A fake (but stable) identity for author fields in the test.private PersonIdent
TestRepository.CommitBuilder. author
protected PersonIdent
LocalDiskRepositoryTestCase. committer
A fake (but stable) identity for committer fields in the test.private PersonIdent
TestRepository.CommitBuilder. committer
private PersonIdent
TestRepository. defaultAuthor
private PersonIdent
TestRepository. defaultCommitter
Methods in org.eclipse.jgit.junit that return PersonIdent Modifier and Type Method Description PersonIdent
TestRepository.CommitBuilder. author()
Get the author identityPersonIdent
TestRepository.CommitBuilder. committer()
Get the committer identityMethods in org.eclipse.jgit.junit with parameters of type PersonIdent Modifier and Type Method Description TestRepository.CommitBuilder
TestRepository.CommitBuilder. author(PersonIdent a)
Set the author identityTestRepository.CommitBuilder
TestRepository.CommitBuilder. committer(PersonIdent c)
Set the committer identityTestRepository.CommitBuilder
TestRepository.CommitBuilder. ident(PersonIdent ident)
Set author and committer identityprivate static void
LocalDiskRepositoryTestCase. putPersonIdent(java.util.Map<java.lang.String,java.lang.String> env, java.lang.String type, PersonIdent who)
-
Uses of PersonIdent in org.eclipse.jgit.lib
Fields in org.eclipse.jgit.lib declared as PersonIdent Modifier and Type Field Description private PersonIdent
ObjectBuilder. author
private PersonIdent
CommitBuilder. committer
private PersonIdent
BatchRefUpdate. refLogIdent
Identity to record action as within the reflog.private PersonIdent
RefUpdate. refLogIdent
Identity to record action as within the reflog.Methods in org.eclipse.jgit.lib that return PersonIdent Modifier and Type Method Description PersonIdent
CommitBuilder. getAuthor()
Get the author of this commit (who wrote it).protected PersonIdent
ObjectBuilder. getAuthor()
Retrieves the author of this object.PersonIdent
CommitBuilder. getCommitter()
Get the committer and commit time for this object.PersonIdent
BatchRefUpdate. getRefLogIdent()
Get identity of the user making the change in the reflog.PersonIdent
RefRename. getRefLogIdent()
Get identity of the user making the change in the reflog.PersonIdent
RefUpdate. getRefLogIdent()
Get identity of the user making the change in the reflog.PersonIdent
TagBuilder. getTagger()
Get creator of this tag.PersonIdent
ReflogEntry. getWho()
Get user performing the changeMethods in org.eclipse.jgit.lib with parameters of type PersonIdent Modifier and Type Method Description boolean
GpgObjectSigner. canLocateSigningKey(java.lang.String gpgSigningKey, PersonIdent committer, CredentialsProvider credentialsProvider, GpgConfig config)
Indicates if a signing key is available for the specified committer and/or signing key.abstract boolean
GpgSigner. canLocateSigningKey(java.lang.String gpgSigningKey, PersonIdent committer, CredentialsProvider credentialsProvider)
Indicates if a signing key is available for the specified committer and/or signing key.void
CommitBuilder. setAuthor(PersonIdent newAuthor)
Set the author (name, email address, and date) of who wrote the commit.protected void
ObjectBuilder. setAuthor(PersonIdent newAuthor)
Sets the author (name, email address, and date) of this object.void
CommitBuilder. setCommitter(PersonIdent newCommitter)
Set the committer and commit time for this object.BatchRefUpdate
BatchRefUpdate. setRefLogIdent(PersonIdent pi)
Set the identity of the user appearing in the reflog.void
RefRename. setRefLogIdent(PersonIdent pi)
Set the identity of the user appearing in the reflog.void
RefUpdate. setRefLogIdent(PersonIdent pi)
Set the identity of the user appearing in the reflog.void
TagBuilder. setTagger(PersonIdent taggerIdent)
Set the creator of this tag.abstract void
GpgSigner. sign(CommitBuilder commit, java.lang.String gpgSigningKey, PersonIdent committer, CredentialsProvider credentialsProvider)
Signs the specified commit.void
GpgObjectSigner. signObject(ObjectBuilder object, java.lang.String gpgSigningKey, PersonIdent committer, CredentialsProvider credentialsProvider, GpgConfig config)
Signs the specified object.Constructors in org.eclipse.jgit.lib with parameters of type PersonIdent Constructor Description PersonIdent(PersonIdent pi)
Copy aPersonIdent
.PersonIdent(PersonIdent pi, long aWhen, int aTZ)
Copy a PersonIdent, but alter the clone's time stampPersonIdent(PersonIdent pi, java.util.Date aWhen)
Copy aPersonIdent
, but alter the clone's time stampPersonIdent(PersonIdent pi, java.util.Date when, java.util.TimeZone tz)
Copy a PersonIdent, but alter the clone's time stamp -
Uses of PersonIdent in org.eclipse.jgit.merge
Methods in org.eclipse.jgit.merge that return PersonIdent Modifier and Type Method Description private static PersonIdent
RecursiveMerger. mockAuthor(java.util.List<RevCommit> parents)
Methods in org.eclipse.jgit.merge with parameters of type PersonIdent Modifier and Type Method Description private java.lang.String
SquashMessageFormatter. toString(PersonIdent author)
-
Uses of PersonIdent in org.eclipse.jgit.pgm
Fields in org.eclipse.jgit.pgm declared as PersonIdent Modifier and Type Field Description private PersonIdent
Blame. dummyDate
Used to get a current time stamp for lines without commit. -
Uses of PersonIdent in org.eclipse.jgit.pgm.debug
Fields in org.eclipse.jgit.pgm.debug declared as PersonIdent Modifier and Type Field Description (package private) PersonIdent
WriteReftable.LogEntry. who
Constructors in org.eclipse.jgit.pgm.debug with parameters of type PersonIdent Constructor Description LogEntry(java.lang.String ref, long updateIndex, PersonIdent who, ObjectId oldId, ObjectId newId, java.lang.String message)
-
Uses of PersonIdent in org.eclipse.jgit.pgm.internal
Methods in org.eclipse.jgit.pgm.internal with parameters of type PersonIdent Modifier and Type Method Description static void
VerificationUtils. writeVerification(ThrowingPrintWriter out, GpgSignatureVerifier.SignatureVerification verification, java.lang.String name, PersonIdent creator)
Writes information about a signature verification to the given writer. -
Uses of PersonIdent in org.eclipse.jgit.revwalk
Methods in org.eclipse.jgit.revwalk that return PersonIdent Modifier and Type Method Description PersonIdent
RevCommit. getAuthorIdent()
Parse the author identity from the raw buffer.PersonIdent
RevCommit. getCommitterIdent()
Parse the committer identity from the raw buffer.PersonIdent
RevTag. getTaggerIdent()
Parse the tagger identity from the raw buffer. -
Uses of PersonIdent in org.eclipse.jgit.transport
Fields in org.eclipse.jgit.transport declared as PersonIdent Modifier and Type Field Description (package private) PersonIdent
PushCertificateStore.PendingCert. ident
private PersonIdent
ReceivePack. refLogIdent
Identity to record action as within the reflog.Methods in org.eclipse.jgit.transport that return PersonIdent Modifier and Type Method Description PersonIdent
ReceivePack. getRefLogIdent()
Get identity of the user making the changes in the reflog.Methods in org.eclipse.jgit.transport with parameters of type PersonIdent Modifier and Type Method Description void
PushCertificateStore. put(PushCertificate cert, PersonIdent ident)
Put a certificate to be saved to the store.void
PushCertificateStore. put(PushCertificate cert, PersonIdent ident, java.util.Collection<ReceiveCommand> matching)
Put a certificate to be saved to the store, matching a set of commands.void
ReceivePack. setRefLogIdent(PersonIdent pi)
Set the identity of the user appearing in the affected reflogs.Constructors in org.eclipse.jgit.transport with parameters of type PersonIdent Constructor Description PendingCert(PushCertificate cert, PersonIdent ident, java.util.Collection<ReceiveCommand> matching)
-
Uses of PersonIdent in org.eclipse.jgit.util
Methods in org.eclipse.jgit.util that return PersonIdent Modifier and Type Method Description static PersonIdent
RawParseUtils. parsePersonIdent(byte[] raw, int nameB)
Parse a name line (e.g.static PersonIdent
RawParseUtils. parsePersonIdent(java.lang.String in)
Parse a name string (e.g.static PersonIdent
RawParseUtils. parsePersonIdentOnly(byte[] raw, int nameB)
Parse a name data (e.g.Methods in org.eclipse.jgit.util with parameters of type PersonIdent Modifier and Type Method Description static ObjectId
ChangeIdUtil. computeChangeId(ObjectId treeId, ObjectId firstParentId, PersonIdent author, PersonIdent committer, java.lang.String message)
Compute a Change-Id.java.lang.String
GitDateFormatter. formatDate(PersonIdent ident)
Format committer, author or tagger ident according to this formatter's specification.static java.lang.String
SignatureUtils. toString(GpgSignatureVerifier.SignatureVerification verification, PersonIdent creator, GitDateFormatter formatter)
Writes information about a signature verification to a string.
-