Package | Description |
---|---|
org.eclipse.jgit.internal.ketch |
Distributed consensus system built on Git.
|
org.eclipse.jgit.lib |
Core API for repository, config, refs, object database.
|
org.eclipse.jgit.transport |
Transport (fetch/push) for different protocols.
|
Modifier and Type | Field and Description |
---|---|
private PushCertificate |
Proposal.pushCert |
Modifier and Type | Method and Description |
---|---|
PushCertificate |
Proposal.getPushCertificate()
Get optional certificate signing the references.
|
Modifier and Type | Method and Description |
---|---|
Proposal |
Proposal.setPushCertificate(PushCertificate cert)
Set the push certificate signing the references.
|
Modifier and Type | Field and Description |
---|---|
private PushCertificate |
BatchRefUpdate.pushCert
Push certificate associated with this update.
|
private PushCertificate |
RefUpdate.pushCert
Push certificate associated with this update.
|
Modifier and Type | Method and Description |
---|---|
protected PushCertificate |
BatchRefUpdate.getPushCertificate()
Set the push certificate associated with this update.
|
protected PushCertificate |
RefUpdate.getPushCertificate()
Set the push certificate associated with this update.
|
Modifier and Type | Method and Description |
---|---|
void |
BatchRefUpdate.setPushCertificate(PushCertificate cert)
Set a push certificate associated with this update.
|
void |
RefUpdate.setPushCertificate(PushCertificate cert)
Set a push certificate associated with this update.
|
Modifier and Type | Field and Description |
---|---|
(package private) PushCertificate |
PushCertificateStore.PendingCert.cert |
private PushCertificate |
ReceivePack.pushCert |
Modifier and Type | Method and Description |
---|---|
PushCertificate |
PushCertificateParser.build()
Build the parsed certificate
|
static PushCertificate |
PushCertificateParser.fromReader(java.io.Reader r)
Parse a push certificate from a reader.
|
static PushCertificate |
PushCertificateParser.fromString(java.lang.String str)
Parse a push certificate from a string.
|
PushCertificate |
PushCertificateStore.get(java.lang.String refName)
Get latest push certificate associated with a ref.
|
PushCertificate |
ReceivePack.getPushCertificate()
Get the push certificate used to verify the pusher's identity.
|
PushCertificate |
PushCertificateParser.parse(java.io.Reader r)
Parse a push certificate from a reader.
|
(package private) static PushCertificate |
PushCertificateStore.read(TreeWalk tw) |
Modifier and Type | Method and Description |
---|---|
java.lang.Iterable<PushCertificate> |
PushCertificateStore.getAll(java.lang.String refName)
Iterate over all push certificates affecting a ref.
|
Modifier and Type | Method and Description |
---|---|
private static java.lang.String |
PushCertificateStore.buildMessage(PushCertificate cert) |
private static boolean |
PushCertificate.commandsEqual(PushCertificate c1,
PushCertificate c2) |
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.setPushCertificate(PushCertificate cert)
Set the push certificate used to verify the pusher's identity.
|
Constructor and Description |
---|
PendingCert(PushCertificate cert,
PersonIdent ident,
java.util.Collection<ReceiveCommand> matching) |