mirror of
https://github.com/shred/acme4j.git
synced 2025-12-13 11:14:02 +08:00
Mark ARI related methods as draft
This commit is contained in:
@@ -222,6 +222,9 @@ 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() {
|
||||
@@ -247,6 +250,9 @@ 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() {
|
||||
@@ -256,6 +262,9 @@ 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.
|
||||
* @since 3.0.0
|
||||
*/
|
||||
@@ -276,6 +285,9 @@ public class Certificate extends AcmeResource {
|
||||
* (see {@link #hasRenewalInfo()}. An {@link AcmeNotSupportedException} is thrown
|
||||
* otherwise.
|
||||
*
|
||||
* @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.1.0
|
||||
*/
|
||||
public void markAsReplaced() throws AcmeException {
|
||||
|
||||
@@ -30,6 +30,9 @@ 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