Package de.trustable.ca3s.core.domain
Class AcmeChallenge
- java.lang.Object
-
- de.trustable.ca3s.core.domain.AcmeChallenge
-
- All Implemented Interfaces:
Serializable
@Entity public class AcmeChallenge extends Object implements Serializable
A AcmeChallenge.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static StringCHALLENGE_TYPE_ALPN_01static StringCHALLENGE_TYPE_DNS_01static StringCHALLENGE_TYPE_HTTP_01
-
Constructor Summary
Constructors Constructor Description AcmeChallenge()
-
Method Summary
-
-
-
Field Detail
-
CHALLENGE_TYPE_HTTP_01
public static final String CHALLENGE_TYPE_HTTP_01
- See Also:
- Constant Field Values
-
CHALLENGE_TYPE_DNS_01
public static final String CHALLENGE_TYPE_DNS_01
- See Also:
- Constant Field Values
-
CHALLENGE_TYPE_ALPN_01
public static final String CHALLENGE_TYPE_ALPN_01
- See Also:
- Constant Field Values
-
-
Method Detail
-
getId
public Long getId()
-
id
public AcmeChallenge id(Long id)
-
setId
public void setId(Long id)
-
getChallengeId
public Long getChallengeId()
-
challengeId
public AcmeChallenge challengeId(Long challengeId)
-
setChallengeId
public void setChallengeId(Long challengeId)
-
getType
public String getType()
-
type
public AcmeChallenge type(String type)
-
setType
public void setType(String type)
-
getValue
public String getValue()
-
value
public AcmeChallenge value(String value)
-
setValue
public void setValue(String value)
-
getToken
public String getToken()
-
token
public AcmeChallenge token(String token)
-
setToken
public void setToken(String token)
-
getValidated
public Instant getValidated()
-
validated
public AcmeChallenge validated(Instant validated)
-
setValidated
public void setValidated(Instant validated)
-
getStatus
public ChallengeStatus getStatus()
-
status
public AcmeChallenge status(ChallengeStatus status)
-
getLastError
public String getLastError()
-
setLastError
public void setLastError(String lastError)
-
setStatus
public void setStatus(ChallengeStatus status)
-
getAcmeAuthorization
public AcmeAuthorization getAcmeAuthorization()
-
setAcmeAuthorization
public void setAcmeAuthorization(AcmeAuthorization acmeAuthorization)
-
acmeAuthorization
public AcmeChallenge acmeAuthorization(AcmeAuthorization acmeAuthorization)
-
getRequestProxy
public RequestProxyConfig getRequestProxy()
-
setRequestProxy
public void setRequestProxy(RequestProxyConfig requestProxy)
-
-