Class AuthorizationResponse
- java.lang.Object
-
- de.trustable.ca3s.core.service.dto.acme.AuthorizationResponse
-
@Immutable public class AuthorizationResponse extends Object
-
-
Constructor Summary
Constructors Constructor Description AuthorizationResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Set<ChallengeResponse>getChallenges()DategetExpires()IdentifierResponsegetIdentifier()AcmeOrderStatusgetStatus()booleanisWildcard()voidsetChallenges(Set<ChallengeResponse> challenges)voidsetExpires(Date expires)voidsetIdentifier(IdentifierResponse identifier)voidsetStatus(AcmeOrderStatus status)voidsetWildcard(boolean wildcard)
-
-
-
Method Detail
-
getStatus
public AcmeOrderStatus getStatus()
- Returns:
- the status
-
setStatus
public void setStatus(AcmeOrderStatus status)
- Parameters:
status- the status to set
-
getExpires
public Date getExpires()
- Returns:
- the expires
-
setExpires
public void setExpires(Date expires)
- Parameters:
expires- the expires to set
-
getIdentifier
public IdentifierResponse getIdentifier()
- Returns:
- the identifiers
-
setIdentifier
public void setIdentifier(IdentifierResponse identifier)
- Parameters:
identifier- the identifier to set
-
getChallenges
public Set<ChallengeResponse> getChallenges()
- Returns:
- the challenges
-
setChallenges
public void setChallenges(Set<ChallengeResponse> challenges)
- Parameters:
challenges- the challenges to set
-
isWildcard
public boolean isWildcard()
- Returns:
- the wildcard
-
setWildcard
public void setWildcard(boolean wildcard)
- Parameters:
wildcard- the wildcard to set
-
-