]> source.dussan.org Git - jgit.git/commitdiff
Add/fix since tags for new API for push certificates 32/42632/1
authorMatthias Sohn <matthias.sohn@sap.com>
Wed, 25 Feb 2015 13:18:12 +0000 (14:18 +0100)
committerMatthias Sohn <matthias.sohn@sap.com>
Wed, 25 Feb 2015 13:18:12 +0000 (14:18 +0100)
This was missed in change I249869cadb2d55aef016371b9311b8583591b9cf

Change-Id: I19c9d4c04b6aa92b9e04c192dee70775d6985b58
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
org.eclipse.jgit/src/org/eclipse/jgit/transport/GitProtocolConstants.java
org.eclipse.jgit/src/org/eclipse/jgit/transport/PushCertificate.java
org.eclipse.jgit/src/org/eclipse/jgit/transport/PushCertificateParser.java

index 6a4577ed6c7ea0f67924be920650a8921823c424..27052db6745787be9f2501ba866c8a174e721af3 100644 (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$
 
index cc47874f97771872d60aa85ce744972b94e9cf23..455b46544fa6a82ec51a6719a4822a81c3f5bcda 100644 (file)
@@ -45,6 +45,8 @@ package org.eclipse.jgit.transport;
 
 /**
  * The required information to verify the push.
+ *
+ * @since 4.0
  */
 public class PushCertificate {
 
index f05186cd59a9b7859a82234cd9cd64006d613f31..d111a22ca05044371197c5092e3006c68ade5f4a 100644 (file)
@@ -54,8 +54,9 @@ import org.eclipse.jgit.lib.Repository;
 import org.eclipse.jgit.transport.BaseReceivePack.ReceiveConfig;
 
 /**
- * @author sbeller
+ * Parser for Push certificates
  *
+ * @since 4.0
  */
 public class PushCertificateParser extends PushCertificate {