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.service.util 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.SingularAttribute<AuditTrace,AcmeAccount>AuditTrace_. acmeAccountstatic javax.persistence.metamodel.SetAttribute<AcmeAccount,AcmeContact>AcmeAccount_. contactsstatic javax.persistence.metamodel.SingularAttribute<AcmeAccount,Instant>AcmeAccount_. createdOnstatic 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 with parameters of type AcmeAccount Modifier and Type Method Description AcmeContactAcmeContact. account(AcmeAccount acmeAccount)AcmeOrderAcmeOrder. account(AcmeAccount acmeAccount)AuditTraceAuditTrace. acmeAccount(AcmeAccount acmeAccount)voidAcmeContact. setAccount(AcmeAccount acmeAccount)voidAcmeOrder. setAccount(AcmeAccount acmeAccount)voidAuditTrace. setAcmeAccount(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 Optional<AcmeAccount>AcmeAccountRepository. findByAccountId(long accountId)org.springframework.data.domain.Page<AcmeAccount>AcmeAccountRepository. findByCreatedOnIsNull(org.springframework.data.domain.Pageable pageable)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.Optional<AcmeAccount>AcmeAccountService. findOneByAccountId(Long accountId)Get the "accountId" 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, org.springframework.web.util.UriComponentsBuilder uriComponentsBuilder) -
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.Optional<AcmeAccount>AcmeAccountServiceImpl. findOneByAccountId(Long accountId)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.service.util
Methods in de.trustable.ca3s.core.service.util with parameters of type AcmeAccount Modifier and Type Method Description AcmeAccountViewAcmeAccountUtil. from(AcmeAccount 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 with parameters of type AcmeAccount Modifier and Type Method Description voidAcmeController. updateAccountContactFromRequest(AcmeAccount acctDao, AccountRequest updatedAcct, Pipeline pipeline)voidAcmeController. updateAccountFromRequest(AcmeAccount acctDao, AccountRequest updatedAcct, Pipeline pipeline)
-