mirror of https://github.com/shred/acme4j
Fix javadoc errors
parent
0f4d5e114d
commit
5c68fcae40
|
@ -32,7 +32,7 @@ import org.shredzone.acme4j.impl.GenericAcmeClient;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Abstract implementation of {@link AcmeClientProvider}. It consists of a challenge
|
* Abstract implementation of {@link AcmeClientProvider}. It consists of a challenge
|
||||||
* registry and a standard {@link #openConnection(URI)} implementation.
|
* registry and a standard {@link HttpConnector}.
|
||||||
* <p>
|
* <p>
|
||||||
* Implementing classes must implement at least {@link AcmeClientProvider#accepts(URI)}
|
* Implementing classes must implement at least {@link AcmeClientProvider#accepts(URI)}
|
||||||
* and {@link AbstractAcmeClientProvider#resolve(URI)}.
|
* and {@link AbstractAcmeClientProvider#resolve(URI)}.
|
||||||
|
|
|
@ -36,8 +36,7 @@ import org.junit.experimental.categories.Category;
|
||||||
public class LetsEncryptHttpConnectorTest {
|
public class LetsEncryptHttpConnectorTest {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test if the {@link LetsEncryptAcmeClientProvider#openConnection(URI)} accepts only
|
* Test if the connector accepts only the Let's Encrypt certificate.
|
||||||
* the Let's Encrypt certificate.
|
|
||||||
* <p>
|
* <p>
|
||||||
* This test requires a network connection. It should be excluded from automated
|
* This test requires a network connection. It should be excluded from automated
|
||||||
* builds.
|
* builds.
|
||||||
|
|
|
@ -44,8 +44,9 @@ public class CertificateUtilsTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test if {@link CertificateUtilsTest#writeX509CertificateTest()} writes a
|
* Test if
|
||||||
* proper X.509 certificate.
|
* {@link CertificateUtils#writeX509Certificate(X509Certificate, java.io.Writer)}
|
||||||
|
* writes a proper X.509 certificate.
|
||||||
*/
|
*/
|
||||||
@Test
|
@Test
|
||||||
public void testWriteX509Certificate() throws IOException, CertificateException {
|
public void testWriteX509Certificate() throws IOException, CertificateException {
|
||||||
|
|
Loading…
Reference in New Issue