draft-ietf-acme-ari is RFC 9773 now

Also this feature ends experimental status.
This commit is contained in:
Richard Körber
2025-06-19 16:32:23 +02:00
parent ec726f6859
commit 2a5df329bd
7 changed files with 3 additions and 30 deletions

View File

@@ -192,9 +192,6 @@ public class Certificate extends AcmeResource {
* Returns the location of the certificate's RenewalInfo. Empty if the CA does not
* provide this information.
*
* @draft This method is currently based on an RFC draft. It may be changed or
* removed without notice to reflect future changes to the draft. SemVer rules
* do not apply here.
* @since 3.0.0
*/
public Optional<URL> getRenewalInfoLocation() {
@@ -220,9 +217,6 @@ public class Certificate extends AcmeResource {
/**
* Returns {@code true} if the CA provides renewal information.
*
* @draft This method is currently based on an RFC draft. It may be changed or
* removed without notice to reflect future changes to the draft. SemVer rules
* do not apply here.
* @since 3.0.0
*/
public boolean hasRenewalInfo() {
@@ -232,9 +226,6 @@ public class Certificate extends AcmeResource {
/**
* Reads the RenewalInfo for this certificate.
*
* @draft This method is currently based on an RFC draft. It may be changed or
* removed without notice to reflect future changes to the draft. SemVer rules
* do not apply here.
* @return The {@link RenewalInfo} of this certificate.
* @throws AcmeNotSupportedException if the CA does not support renewal information.
* @since 3.0.0

View File

@@ -160,9 +160,6 @@ public class Login {
* @param certificate
* {@link X509Certificate} to get the {@link RenewalInfo} for
* @return {@link RenewalInfo} bound to the login
* @draft This method is currently based on an RFC draft. It may be changed or removed
* without notice to reflect future changes to the draft. SemVer rules do not apply
* here.
* @since 3.2.0
*/
public RenewalInfo bindRenewalInfo(X509Certificate certificate) throws AcmeException {

View File

@@ -299,9 +299,6 @@ public class OrderBuilder {
* @param uniqueId
* Certificate's renewal unique identifier.
* @return itself
* @draft This method is currently based on an RFC draft. It may be changed or removed
* without notice to reflect future changes to the draft. SemVer rules do not apply
* here.
* @since 3.2.0
*/
public OrderBuilder replaces(String uniqueId) {
@@ -319,9 +316,6 @@ public class OrderBuilder {
* @param certificate
* Certificate to be replaced
* @return itself
* @draft This method is currently based on an RFC draft. It may be changed or removed
* without notice to reflect future changes to the draft. SemVer rules do not apply
* here.
* @since 3.2.0
*/
public OrderBuilder replaces(X509Certificate certificate) {
@@ -338,9 +332,6 @@ public class OrderBuilder {
* @param certificate
* Certificate to be replaced
* @return itself
* @draft This method is currently based on an RFC draft. It may be changed or removed
* without notice to reflect future changes to the draft. SemVer rules do not apply
* here.
* @since 3.2.0
*/
public OrderBuilder replaces(Certificate certificate) {

View File

@@ -30,9 +30,6 @@ import org.slf4j.LoggerFactory;
/**
* Renewal Information of a certificate.
*
* @draft This class is currently based on an RFC draft. It may be changed or
* removed without notice to reflect future changes to the draft. SemVer rules
* do not apply here.
* @since 3.0.0
*/
public class RenewalInfo extends AcmeJsonResource {