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()
-
id
public AcmeAccount id(Long id)
-
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()
-
getTermsOfServiceAgreed
public Boolean getTermsOfServiceAgreed()
-
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)
-
getCreatedOn
public Instant getCreatedOn()
-
createdOn
public AcmeAccount createdOn(Instant createdOn)
-
setCreatedOn
public void setCreatedOn(Instant createdOn)
-
getContacts
public Set<AcmeContact> getContacts()
-
setContacts
public void setContacts(Set<AcmeContact> acmeContacts)
-
contacts
public AcmeAccount contacts(Set<AcmeContact> acmeContacts)
-
addContacts
public AcmeAccount addContacts(AcmeContact acmeContact)
-
removeContacts
public AcmeAccount removeContacts(AcmeContact acmeContact)
-
orders
public AcmeAccount orders(Set<AcmeOrder> acmeOrders)
-
addOrders
public AcmeAccount addOrders(AcmeOrder acmeOrder)
-
removeOrders
public AcmeAccount removeOrders(AcmeOrder acmeOrder)
-
-