Uses of Class
de.trustable.ca3s.core.domain.ACMEAccount
-
Packages that use ACMEAccount Package Description de.trustable.ca3s.core.domain JPA domain objects.de.trustable.ca3s.core.repository Spring Data JPA repositories.de.trustable.ca3s.core.service Service layer beans.de.trustable.ca3s.core.service.dto.acme de.trustable.ca3s.core.service.impl de.trustable.ca3s.core.web.rest Spring MVC REST controllers.de.trustable.ca3s.core.web.rest.acme -
-
Uses of ACMEAccount in de.trustable.ca3s.core.domain
Fields in de.trustable.ca3s.core.domain with type parameters of type ACMEAccount Modifier and Type Field Description static javax.persistence.metamodel.SingularAttribute<AcmeContact,ACMEAccount>AcmeContact_. accountstatic javax.persistence.metamodel.SingularAttribute<AcmeOrder,ACMEAccount>AcmeOrder_. accountstatic javax.persistence.metamodel.SingularAttribute<ACMEAccount,Long>ACMEAccount_. accountIdstatic javax.persistence.metamodel.SetAttribute<ACMEAccount,AcmeContact>ACMEAccount_. contactsstatic javax.persistence.metamodel.SingularAttribute<ACMEAccount,Long>ACMEAccount_. idstatic javax.persistence.metamodel.SetAttribute<ACMEAccount,AcmeOrder>ACMEAccount_. ordersstatic javax.persistence.metamodel.SingularAttribute<ACMEAccount,String>ACMEAccount_. publicKeystatic javax.persistence.metamodel.SingularAttribute<ACMEAccount,String>ACMEAccount_. publicKeyHashstatic javax.persistence.metamodel.SingularAttribute<ACMEAccount,String>ACMEAccount_. realmstatic javax.persistence.metamodel.SingularAttribute<ACMEAccount,AccountStatus>ACMEAccount_. statusstatic javax.persistence.metamodel.SingularAttribute<ACMEAccount,Boolean>ACMEAccount_. termsOfServiceAgreedMethods in de.trustable.ca3s.core.domain that return ACMEAccount Modifier and Type Method Description ACMEAccountACMEAccount. accountId(Long accountId)ACMEAccountACMEAccount. addContacts(AcmeContact acmeContact)ACMEAccountACMEAccount. addOrders(AcmeOrder acmeOrder)ACMEAccountACMEAccount. contacts(Set<AcmeContact> acmeContacts)ACMEAccountAcmeContact. getAccount()ACMEAccountAcmeOrder. getAccount()ACMEAccountACMEAccount. orders(Set<AcmeOrder> acmeOrders)ACMEAccountACMEAccount. publicKey(String publicKey)ACMEAccountACMEAccount. publicKeyHash(String publicKeyHash)ACMEAccountACMEAccount. realm(String realm)ACMEAccountACMEAccount. removeContacts(AcmeContact acmeContact)ACMEAccountACMEAccount. removeOrders(AcmeOrder acmeOrder)ACMEAccountACMEAccount. status(AccountStatus status)ACMEAccountACMEAccount. termsOfServiceAgreed(Boolean termsOfServiceAgreed)Methods in de.trustable.ca3s.core.domain with parameters of type ACMEAccount Modifier and Type Method Description AcmeContactAcmeContact. account(ACMEAccount aCMEAccount)AcmeOrderAcmeOrder. account(ACMEAccount aCMEAccount)voidAcmeContact. setAccount(ACMEAccount aCMEAccount)voidAcmeOrder. setAccount(ACMEAccount aCMEAccount) -
Uses of ACMEAccount in de.trustable.ca3s.core.repository
Methods in de.trustable.ca3s.core.repository that return types with arguments of type ACMEAccount Modifier and Type Method Description List<ACMEAccount>ACMEAccountRepository. findByAccountId(long accountId)List<ACMEAccount>ACMEAccountRepository. findByPublicKeyHashBase64(String publicKeyHashBase64) -
Uses of ACMEAccount in de.trustable.ca3s.core.service
Methods in de.trustable.ca3s.core.service that return ACMEAccount Modifier and Type Method Description ACMEAccountACMEAccountService. save(ACMEAccount aCMEAccount)Save a aCMEAccount.Methods in de.trustable.ca3s.core.service that return types with arguments of type ACMEAccount Modifier and Type Method Description List<ACMEAccount>ACMEAccountService. findAll()Get all the aCMEAccounts.Optional<ACMEAccount>ACMEAccountService. findOne(Long id)Get the "id" aCMEAccount.Methods in de.trustable.ca3s.core.service with parameters of type ACMEAccount Modifier and Type Method Description ACMEAccountACMEAccountService. save(ACMEAccount aCMEAccount)Save a aCMEAccount. -
Uses of ACMEAccount in de.trustable.ca3s.core.service.dto.acme
Constructors in de.trustable.ca3s.core.service.dto.acme with parameters of type ACMEAccount Constructor Description AccountResponse(ACMEAccount accountDao) -
Uses of ACMEAccount in de.trustable.ca3s.core.service.impl
Methods in de.trustable.ca3s.core.service.impl that return ACMEAccount Modifier and Type Method Description ACMEAccountACMEAccountServiceImpl. save(ACMEAccount aCMEAccount)Save a aCMEAccount.Methods in de.trustable.ca3s.core.service.impl that return types with arguments of type ACMEAccount Modifier and Type Method Description List<ACMEAccount>ACMEAccountServiceImpl. findAll()Get all the aCMEAccounts.Optional<ACMEAccount>ACMEAccountServiceImpl. findOne(Long id)Get one aCMEAccount by id.Methods in de.trustable.ca3s.core.service.impl with parameters of type ACMEAccount Modifier and Type Method Description ACMEAccountACMEAccountServiceImpl. save(ACMEAccount aCMEAccount)Save a aCMEAccount. -
Uses of ACMEAccount in de.trustable.ca3s.core.web.rest
Methods in de.trustable.ca3s.core.web.rest that return types with arguments of type ACMEAccount Modifier and Type Method Description org.springframework.http.ResponseEntity<ACMEAccount>ACMEAccountResource. createACMEAccount(@Valid ACMEAccount aCMEAccount)POST /acme-accounts: Create a new aCMEAccount.org.springframework.http.ResponseEntity<ACMEAccount>ACMEAccountResource. getACMEAccount(Long id)GET /acme-accounts/:id: get the "id" aCMEAccount.List<ACMEAccount>ACMEAccountResource. getAllACMEAccounts()GET /acme-accounts: get all the aCMEAccounts.org.springframework.http.ResponseEntity<ACMEAccount>ACMEAccountResource. updateACMEAccount(@Valid ACMEAccount aCMEAccount)PUT /acme-accounts: Updates an existing aCMEAccount.Methods in de.trustable.ca3s.core.web.rest with parameters of type ACMEAccount Modifier and Type Method Description org.springframework.http.ResponseEntity<ACMEAccount>ACMEAccountResource. createACMEAccount(@Valid ACMEAccount aCMEAccount)POST /acme-accounts: Create a new aCMEAccount.org.springframework.http.ResponseEntity<ACMEAccount>ACMEAccountResource. updateACMEAccount(@Valid ACMEAccount aCMEAccount)PUT /acme-accounts: Updates an existing aCMEAccount. -
Uses of ACMEAccount in de.trustable.ca3s.core.web.rest.acme
Methods in de.trustable.ca3s.core.web.rest.acme that return types with arguments of type ACMEAccount Modifier and Type Method Description org.springframework.http.ResponseEntity<ACMEAccount>AccountController. getAccount(long accountId)Methods in de.trustable.ca3s.core.web.rest.acme with parameters of type ACMEAccount Modifier and Type Method Description voidACMEController. contactsFromRequest(ACMEAccount acctDao, AccountRequest updatedAcct)
-