mirror of
https://github.com/shred/acme4j.git
synced 2025-12-13 11:14:02 +08:00
draft-ietf-acme-ari is RFC 9773 now
Also this feature ends experimental status.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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) {
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user