Uses of Class
org.eclipse.jgit.lib.PersonIdent
Packages that use PersonIdent
Package
Description
High-level API commands (the porcelain of JGit).
Computing blame/annotate information of files.
File based repository storage.
Core API for repository, config, refs, object database.
Content and commit history merge algorithms.
Walking revision graphs (commit history).
Transport (fetch/push) for different protocols.
Utility classes.
-
Uses of PersonIdent in org.eclipse.jgit.api
Fields in org.eclipse.jgit.api declared as PersonIdentModifier and TypeFieldDescriptionprivate PersonIdentCommitCommand.authorprivate PersonIdentCommitCommand.committerprivate PersonIdentStashCreateCommand.personprivate PersonIdentTagCommand.taggerMethods in org.eclipse.jgit.api that return PersonIdentModifier and TypeMethodDescriptionCommitCommand.getAuthor()Get the authorCommitCommand.getCommitter()Get the committerTagCommand.getTagger()Get thetaggerwho created the tag.private PersonIdentRebaseCommand.parseAuthor()(package private) PersonIdentRebaseCommand.parseAuthor(byte[] raw) Methods in org.eclipse.jgit.api with parameters of type PersonIdentModifier and TypeMethodDescriptionCommitCommand.setAuthor(PersonIdent author) Sets the author for thiscommit.CommitCommand.setCommitter(PersonIdent committer) Sets the committer for thiscommit.StashCreateCommand.setPerson(PersonIdent person) Set the person to use as the author and committer in the commits madeTagCommand.setTagger(PersonIdent tagger) Sets the tagger of the tag.(package private) StringRebaseCommand.toAuthorScript(PersonIdent author) private voidRebaseCommand.updateStashRef(ObjectId commitId, PersonIdent refLogIdent, String refLogMessage) private voidStashCreateCommand.updateStashRef(ObjectId commitId, PersonIdent refLogIdent, String refLogMessage) -
Uses of PersonIdent in org.eclipse.jgit.awtui
Fields in org.eclipse.jgit.awtui declared as PersonIdentModifier and TypeFieldDescription(package private) PersonIdentCommitGraphPane.CommitTableModel.lastAuthorMethods in org.eclipse.jgit.awtui that return PersonIdentModifier and TypeMethodDescription(package private) PersonIdentCommitGraphPane.CommitTableModel.authorFor(PlotCommit<SwingCommitList.SwingLane> c) -
Uses of PersonIdent in org.eclipse.jgit.blame
Fields in org.eclipse.jgit.blame declared as PersonIdentModifier and TypeFieldDescriptionprivate final PersonIdent[]BlameResult.sourceAuthorsprivate final PersonIdent[]BlameResult.sourceCommittersMethods in org.eclipse.jgit.blame that return PersonIdentModifier and TypeMethodDescription(package private) PersonIdentCandidate.BlobCandidate.getAuthor()(package private) PersonIdentCandidate.getAuthor()(package private) PersonIdentCandidate.HeadCandidate.getAuthor()BlameGenerator.getSourceAuthor()Get source authorBlameResult.getSourceAuthor(int idx) Get the author that provided the specified line of the result.BlameGenerator.getSourceCommitter()Get source committerBlameResult.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 PersonIdentModifier and TypeFieldDescriptionprivate final PersonIdentBareSuperprojectWriter.authorprivate PersonIdentRepoCommand.authorMethods in org.eclipse.jgit.gitrepo with parameters of type PersonIdentModifier and TypeMethodDescriptionRepoCommand.setAuthor(PersonIdent author) Set the author/committer for the bare repository commit.Constructors in org.eclipse.jgit.gitrepo with parameters of type PersonIdentModifierConstructorDescription(package private)BareSuperprojectWriter(Repository repo, URI targetUri, String targetBranch, PersonIdent author, RepoCommand.RemoteReader callback, BareSuperprojectWriter.BareWriterConfig config, List<BareSuperprojectWriter.ExtraContent> extraContents) -
Uses of PersonIdent in org.eclipse.jgit.gpg.bc.internal
Methods in org.eclipse.jgit.gpg.bc.internal with parameters of type PersonIdentModifier and TypeMethodDescriptionbooleanBouncyCastleGpgSigner.canLocateSigningKey(String gpgSigningKey, PersonIdent committer, CredentialsProvider credentialsProvider) booleanBouncyCastleGpgSigner.canLocateSigningKey(String gpgSigningKey, PersonIdent committer, CredentialsProvider credentialsProvider, GpgConfig config) private BouncyCastleGpgKeyBouncyCastleGpgSigner.locateSigningKey(String gpgSigningKey, PersonIdent committer, BouncyCastleGpgKeyPassphrasePrompt passphrasePrompt) voidBouncyCastleGpgSigner.sign(CommitBuilder commit, String gpgSigningKey, PersonIdent committer, CredentialsProvider credentialsProvider) voidBouncyCastleGpgSigner.signObject(ObjectBuilder object, 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 PersonIdentModifier and TypeMethodDescriptionprivate static PersonIdentDefaultReceivePackFactory.toPersonIdent(javax.servlet.http.HttpServletRequest req, String user) -
Uses of PersonIdent in org.eclipse.jgit.internal.storage.file
Fields in org.eclipse.jgit.internal.storage.file declared as PersonIdentMethods in org.eclipse.jgit.internal.storage.file that return PersonIdentModifier and TypeMethodDescriptionFileReftableDatabase.FileReftableRefUpdate.getRefLogIdent()ReflogEntryImpl.getWho()Get user performing the changeMethods in org.eclipse.jgit.internal.storage.file with parameters of type PersonIdentModifier and TypeMethodDescriptionprivate byte[]ReflogWriter.encode(ObjectId oldId, ObjectId newId, PersonIdent ident, 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 PersonIdentMethods in org.eclipse.jgit.internal.storage.reftable with parameters of type PersonIdentModifier and TypeMethodDescriptionvoidReftableWriter.writeLog(String ref, long updateIndex, PersonIdent who, ObjectId oldId, ObjectId newId, String message) Write one reflog entry to the reftable.Constructors in org.eclipse.jgit.internal.storage.reftable with parameters of type PersonIdent -
Uses of PersonIdent in org.eclipse.jgit.lib
Fields in org.eclipse.jgit.lib declared as PersonIdentModifier and TypeFieldDescriptionprivate PersonIdentObjectBuilder.authorprivate PersonIdentCommitBuilder.committerprivate PersonIdentBatchRefUpdate.refLogIdentIdentity to record action as within the reflog.private PersonIdentRefUpdate.refLogIdentIdentity to record action as within the reflog.Methods in org.eclipse.jgit.lib that return PersonIdentModifier and TypeMethodDescriptionCommitBuilder.getAuthor()Get the author of this commit (who wrote it).protected PersonIdentObjectBuilder.getAuthor()Retrieves the author of this object.CommitBuilder.getCommitter()Get the committer and commit time for this object.BatchRefUpdate.getRefLogIdent()Get identity of the user making the change in the reflog.RefRename.getRefLogIdent()Get identity of the user making the change in the reflog.RefUpdate.getRefLogIdent()Get identity of the user making the change in the reflog.TagBuilder.getTagger()Get creator of this tag.ReflogEntry.getWho()Get user performing the changeMethods in org.eclipse.jgit.lib with parameters of type PersonIdentModifier and TypeMethodDescriptionbooleanGpgObjectSigner.canLocateSigningKey(String gpgSigningKey, PersonIdent committer, CredentialsProvider credentialsProvider, GpgConfig config) Indicates if a signing key is available for the specified committer and/or signing key.abstract booleanGpgSigner.canLocateSigningKey(String gpgSigningKey, PersonIdent committer, CredentialsProvider credentialsProvider) Indicates if a signing key is available for the specified committer and/or signing key.voidCommitBuilder.setAuthor(PersonIdent newAuthor) Set the author (name, email address, and date) of who wrote the commit.protected voidObjectBuilder.setAuthor(PersonIdent newAuthor) Sets the author (name, email address, and date) of this object.voidCommitBuilder.setCommitter(PersonIdent newCommitter) Set the committer and commit time for this object.BatchRefUpdate.setRefLogIdent(PersonIdent pi) Set the identity of the user appearing in the reflog.voidRefRename.setRefLogIdent(PersonIdent pi) Set the identity of the user appearing in the reflog.voidRefUpdate.setRefLogIdent(PersonIdent pi) Set the identity of the user appearing in the reflog.voidTagBuilder.setTagger(PersonIdent taggerIdent) Set the creator of this tag.abstract voidGpgSigner.sign(CommitBuilder commit, String gpgSigningKey, PersonIdent committer, CredentialsProvider credentialsProvider) Signs the specified commit.voidGpgObjectSigner.signObject(ObjectBuilder object, String gpgSigningKey, PersonIdent committer, CredentialsProvider credentialsProvider, GpgConfig config) Signs the specified object.Constructors in org.eclipse.jgit.lib with parameters of type PersonIdentModifierConstructorDescriptionCopy aPersonIdent.PersonIdent(PersonIdent pi, long aWhen, int aTZ) Copy a PersonIdent, but alter the clone's time stampPersonIdent(PersonIdent pi, Instant aWhen) Copy aPersonIdent, but alter the clone's time stampPersonIdent(PersonIdent pi, Date aWhen) Copy aPersonIdent, but alter the clone's time stampPersonIdent(PersonIdent pi, Date when, 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 PersonIdentModifier and TypeMethodDescriptionprivate static PersonIdentRecursiveMerger.mockAuthor(List<RevCommit> parents) Methods in org.eclipse.jgit.merge with parameters of type PersonIdentModifier and TypeMethodDescriptionprivate StringSquashMessageFormatter.toString(PersonIdent author) -
Uses of PersonIdent in org.eclipse.jgit.pgm
Fields in org.eclipse.jgit.pgm declared as PersonIdentModifier and TypeFieldDescriptionprivate final PersonIdentBlame.dummyDateUsed 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 PersonIdentConstructors in org.eclipse.jgit.pgm.debug with parameters of type PersonIdent -
Uses of PersonIdent in org.eclipse.jgit.pgm.internal
Methods in org.eclipse.jgit.pgm.internal with parameters of type PersonIdentModifier and TypeMethodDescriptionstatic voidVerificationUtils.writeVerification(ThrowingPrintWriter out, GpgSignatureVerifier.SignatureVerification verification, 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 PersonIdentModifier and TypeMethodDescriptionfinal PersonIdentRevCommit.getAuthorIdent()Parse the author identity from the raw buffer.final PersonIdentRevCommit.getCommitterIdent()Parse the committer identity from the raw buffer.final PersonIdentRevTag.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 PersonIdentModifier and TypeFieldDescription(package private) PersonIdentPushCertificateStore.PendingCert.identprivate PersonIdentReceivePack.refLogIdentIdentity to record action as within the reflog.Methods in org.eclipse.jgit.transport that return PersonIdentModifier and TypeMethodDescriptionReceivePack.getRefLogIdent()Get identity of the user making the changes in the reflog.Methods in org.eclipse.jgit.transport with parameters of type PersonIdentModifier and TypeMethodDescriptionvoidPushCertificateStore.put(PushCertificate cert, PersonIdent ident) Put a certificate to be saved to the store.voidPushCertificateStore.put(PushCertificate cert, PersonIdent ident, Collection<ReceiveCommand> matching) Put a certificate to be saved to the store, matching a set of commands.voidReceivePack.setRefLogIdent(PersonIdent pi) Set the identity of the user appearing in the affected reflogs.Constructors in org.eclipse.jgit.transport with parameters of type PersonIdentModifierConstructorDescription(package private)PendingCert(PushCertificate cert, PersonIdent ident, Collection<ReceiveCommand> matching) -
Uses of PersonIdent in org.eclipse.jgit.util
Methods in org.eclipse.jgit.util that return PersonIdentModifier and TypeMethodDescriptionstatic PersonIdentRawParseUtils.parsePersonIdent(byte[] raw, int nameB) Parse a name line (e.g.static PersonIdentRawParseUtils.parsePersonIdent(String in) Parse a name string (e.g.static PersonIdentRawParseUtils.parsePersonIdentOnly(byte[] raw, int nameB) Parse a name data (e.g.Methods in org.eclipse.jgit.util with parameters of type PersonIdentModifier and TypeMethodDescriptionstatic ObjectIdChangeIdUtil.computeChangeId(ObjectId treeId, ObjectId firstParentId, PersonIdent author, PersonIdent committer, String message) Compute a Change-Id.GitDateFormatter.formatDate(PersonIdent ident) Format committer, author or tagger ident according to this formatter's specification.static StringSignatureUtils.toString(GpgSignatureVerifier.SignatureVerification verification, PersonIdent creator, GitDateFormatter formatter) Writes information about a signature verification to a string.