Show challenge type value in javadoc

pull/17/merge
Richard Körber 2015-12-20 22:40:32 +01:00
parent 46daaa8cfd
commit 5b5500d373
4 changed files with 4 additions and 4 deletions

View File

@ -29,7 +29,7 @@ import org.shredzone.acme4j.util.ClaimBuilder;
public class DnsChallenge extends GenericChallenge {
/**
* Challenge type name.
* Challenge type name: {@value}
*/
public static final String TYPE = "dns-01";

View File

@ -25,7 +25,7 @@ import org.shredzone.acme4j.util.ClaimBuilder;
public class HttpChallenge extends GenericChallenge {
/**
* Challenge type name.
* Challenge type name: {@value}
*/
public static final String TYPE = "http-01";

View File

@ -28,7 +28,7 @@ import org.shredzone.acme4j.util.ClaimBuilder;
public class ProofOfPossessionChallenge extends GenericChallenge {
/**
* Challenge type name.
* Challenge type name: {@value}
*/
public static final String TYPE = "proofOfPossession-01";

View File

@ -23,7 +23,7 @@ package org.shredzone.acme4j.challenge;
public class TlsSniChallenge extends GenericChallenge {
/**
* Challenge type name.
* Challenge type name: {@value}
*/
public static final String TYPE = "tls-sni-01";