Add/fix since tags for new API for push certificates

This was missed in change I249869cadb2d55aef016371b9311b8583591b9cf

Change-Id: I19c9d4c04b6aa92b9e04c192dee70775d6985b58
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
This commit is contained in:
Matthias Sohn 2015-02-25 14:18:12 +01:00
parent d216ce4143
commit 102c50e177
3 changed files with 6 additions and 3 deletions

View File

@ -139,7 +139,7 @@ public class GitProtocolConstants {
/**
* The client will send a push certificate.
*
* @since 3.7
* @since 4.0
*/
public static final String OPTION_PUSH_CERT = "push-cert"; //$NON-NLS-1$
@ -182,7 +182,7 @@ public class GitProtocolConstants {
/**
* The server allows recording of push certificates.
*
* @since 3.7
* @since 4.0
*/
public static final String CAPABILITY_PUSH_CERT = "push-cert"; //$NON-NLS-1$

View File

@ -45,6 +45,8 @@
/**
* The required information to verify the push.
*
* @since 4.0
*/
public class PushCertificate {

View File

@ -54,8 +54,9 @@
import org.eclipse.jgit.transport.BaseReceivePack.ReceiveConfig;
/**
* @author sbeller
* Parser for Push certificates
*
* @since 4.0
*/
public class PushCertificateParser extends PushCertificate {