Uses of Class
de.trustable.ca3s.core.domain.AcmeContact
-
Packages that use AcmeContact 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.impl de.trustable.ca3s.core.web.rest Spring MVC REST controllers. -
-
Uses of AcmeContact in de.trustable.ca3s.core.domain
Fields in de.trustable.ca3s.core.domain with type parameters of type AcmeContact Modifier and Type Field Description static javax.persistence.metamodel.SingularAttribute<AcmeContact,AcmeAccount>AcmeContact_. accountstatic javax.persistence.metamodel.SingularAttribute<AcmeContact,Long>AcmeContact_. contactIdstatic javax.persistence.metamodel.SetAttribute<AcmeAccount,AcmeContact>AcmeAccount_. contactsstatic javax.persistence.metamodel.SingularAttribute<AcmeContact,String>AcmeContact_. contactUrlstatic javax.persistence.metamodel.SingularAttribute<AcmeContact,Long>AcmeContact_. idMethods in de.trustable.ca3s.core.domain that return AcmeContact Modifier and Type Method Description AcmeContactAcmeContact. account(AcmeAccount acmeAccount)AcmeContactAcmeContact. contactId(Long contactId)AcmeContactAcmeContact. contactUrl(String contactUrl)AcmeContactAcmeContact. id(Long id)Methods in de.trustable.ca3s.core.domain that return types with arguments of type AcmeContact Modifier and Type Method Description Set<AcmeContact>AcmeAccount. getContacts()Methods in de.trustable.ca3s.core.domain with parameters of type AcmeContact Modifier and Type Method Description AcmeAccountAcmeAccount. addContacts(AcmeContact acmeContact)AcmeAccountAcmeAccount. removeContacts(AcmeContact acmeContact)Method parameters in de.trustable.ca3s.core.domain with type arguments of type AcmeContact Modifier and Type Method Description AcmeAccountAcmeAccount. contacts(Set<AcmeContact> acmeContacts)voidAcmeAccount. setContacts(Set<AcmeContact> acmeContacts) -
Uses of AcmeContact in de.trustable.ca3s.core.repository
Methods in de.trustable.ca3s.core.repository that return types with arguments of type AcmeContact Modifier and Type Method Description List<AcmeContact>AcmeContactRepository. findByAccountId(Long accountId) -
Uses of AcmeContact in de.trustable.ca3s.core.service
Methods in de.trustable.ca3s.core.service that return AcmeContact Modifier and Type Method Description AcmeContactAcmeContactService. save(AcmeContact acmeContact)Save a acmeContact.Methods in de.trustable.ca3s.core.service that return types with arguments of type AcmeContact Modifier and Type Method Description List<AcmeContact>AcmeContactService. findAll()Get all the acmeContacts.Optional<AcmeContact>AcmeContactService. findOne(Long id)Get the "id" acmeContact.Methods in de.trustable.ca3s.core.service with parameters of type AcmeContact Modifier and Type Method Description AcmeContactAcmeContactService. save(AcmeContact acmeContact)Save a acmeContact. -
Uses of AcmeContact in de.trustable.ca3s.core.service.impl
Methods in de.trustable.ca3s.core.service.impl that return AcmeContact Modifier and Type Method Description AcmeContactAcmeContactServiceImpl. save(AcmeContact acmeContact)Save a acmeContact.Methods in de.trustable.ca3s.core.service.impl that return types with arguments of type AcmeContact Modifier and Type Method Description List<AcmeContact>AcmeContactServiceImpl. findAll()Get all the acmeContacts.Optional<AcmeContact>AcmeContactServiceImpl. findOne(Long id)Get one acmeContact by id.Methods in de.trustable.ca3s.core.service.impl with parameters of type AcmeContact Modifier and Type Method Description AcmeContactAcmeContactServiceImpl. save(AcmeContact acmeContact)Save a acmeContact. -
Uses of AcmeContact in de.trustable.ca3s.core.web.rest
Methods in de.trustable.ca3s.core.web.rest that return types with arguments of type AcmeContact Modifier and Type Method Description org.springframework.http.ResponseEntity<AcmeContact>AcmeContactResource. createAcmeContact(@Valid AcmeContact acmeContact)POST /acme-contacts: Create a new acmeContact.org.springframework.http.ResponseEntity<AcmeContact>AcmeContactResource. getAcmeContact(Long id)GET /acme-contacts/:id: get the "id" acmeContact.List<AcmeContact>AcmeContactResource. getAllAcmeContacts()GET /acme-contacts: get all the acmeContacts.org.springframework.http.ResponseEntity<AcmeContact>AcmeContactResource. updateAcmeContact(@Valid AcmeContact acmeContact)PUT /acme-contacts: Updates an existing acmeContact.Methods in de.trustable.ca3s.core.web.rest with parameters of type AcmeContact Modifier and Type Method Description org.springframework.http.ResponseEntity<AcmeContact>AcmeContactResource. createAcmeContact(@Valid AcmeContact acmeContact)POST /acme-contacts: Create a new acmeContact.org.springframework.http.ResponseEntity<AcmeContact>AcmeContactResource. updateAcmeContact(@Valid AcmeContact acmeContact)PUT /acme-contacts: Updates an existing acmeContact.
-