Package de.trustable.ca3s.core.domain
Class ACMEAccount
- java.lang.Object
-
- de.trustable.ca3s.core.domain.ACMEAccount
-
- All Implemented Interfaces:
Serializable
@Entity public class ACMEAccount extends Object implements Serializable
A ACMEAccount.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ACMEAccount()
-
Method Summary
-
-
-
Method Detail
-
getId
public Long getId()
-
setId
public void setId(Long id)
-
getAccountId
public Long getAccountId()
-
accountId
public ACMEAccount accountId(Long accountId)
-
setAccountId
public void setAccountId(Long accountId)
-
getRealm
public String getRealm()
-
realm
public ACMEAccount realm(String realm)
-
setRealm
public void setRealm(String realm)
-
getStatus
public AccountStatus getStatus()
-
status
public ACMEAccount status(AccountStatus status)
-
setStatus
public void setStatus(AccountStatus status)
-
isTermsOfServiceAgreed
public Boolean isTermsOfServiceAgreed()
-
termsOfServiceAgreed
public ACMEAccount termsOfServiceAgreed(Boolean termsOfServiceAgreed)
-
setTermsOfServiceAgreed
public void setTermsOfServiceAgreed(Boolean termsOfServiceAgreed)
-
getPublicKeyHash
public String getPublicKeyHash()
-
publicKeyHash
public ACMEAccount publicKeyHash(String publicKeyHash)
-
setPublicKeyHash
public void setPublicKeyHash(String publicKeyHash)
-
getPublicKey
public String getPublicKey()
-
publicKey
public ACMEAccount publicKey(String publicKey)
-
setPublicKey
public void setPublicKey(String publicKey)
-
getContacts
public Set<AcmeContact> getContacts()
-
contacts
public ACMEAccount contacts(Set<AcmeContact> acmeContacts)
-
addContacts
public ACMEAccount addContacts(AcmeContact acmeContact)
-
removeContacts
public ACMEAccount removeContacts(AcmeContact acmeContact)
-
setContacts
public void setContacts(Set<AcmeContact> acmeContacts)
-
orders
public ACMEAccount orders(Set<AcmeOrder> acmeOrders)
-
addOrders
public ACMEAccount addOrders(AcmeOrder acmeOrder)
-
removeOrders
public ACMEAccount removeOrders(AcmeOrder acmeOrder)
-
-