Uses of Class
de.trustable.ca3s.core.domain.AcmeIdentifier
-
Packages that use AcmeIdentifier Package Description de.trustable.ca3s.core.domain JPA domain objects.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 AcmeIdentifier in de.trustable.ca3s.core.domain
Fields in de.trustable.ca3s.core.domain with type parameters of type AcmeIdentifier Modifier and Type Field Description static javax.persistence.metamodel.SingularAttribute<AcmeIdentifier,Long>AcmeIdentifier_. acmeIdentifierIdstatic javax.persistence.metamodel.SetAttribute<AcmeOrder,AcmeIdentifier>AcmeOrder_. acmeIdentifiersstatic javax.persistence.metamodel.SingularAttribute<AcmeIdentifier,Long>AcmeIdentifier_. idstatic javax.persistence.metamodel.SingularAttribute<AcmeIdentifier,AcmeOrder>AcmeIdentifier_. orderstatic javax.persistence.metamodel.SingularAttribute<AcmeIdentifier,String>AcmeIdentifier_. typestatic javax.persistence.metamodel.SingularAttribute<AcmeIdentifier,String>AcmeIdentifier_. valueMethods in de.trustable.ca3s.core.domain that return AcmeIdentifier Modifier and Type Method Description AcmeIdentifierAcmeIdentifier. acmeIdentifierId(Long acmeIdentifierId)AcmeIdentifierAcmeIdentifier. order(AcmeOrder acmeOrder)AcmeIdentifierAcmeIdentifier. type(String type)AcmeIdentifierAcmeIdentifier. value(String value)Methods in de.trustable.ca3s.core.domain that return types with arguments of type AcmeIdentifier Modifier and Type Method Description Set<AcmeIdentifier>AcmeOrder. getAcmeIdentifiers()Methods in de.trustable.ca3s.core.domain with parameters of type AcmeIdentifier Modifier and Type Method Description AcmeOrderAcmeOrder. addAcmeIdentifiers(AcmeIdentifier acmeIdentifier)AcmeOrderAcmeOrder. removeAcmeIdentifiers(AcmeIdentifier acmeIdentifier)Method parameters in de.trustable.ca3s.core.domain with type arguments of type AcmeIdentifier Modifier and Type Method Description AcmeOrderAcmeOrder. acmeIdentifiers(Set<AcmeIdentifier> acmeIdentifiers)voidAcmeOrder. setAcmeIdentifiers(Set<AcmeIdentifier> acmeIdentifiers) -
Uses of AcmeIdentifier in de.trustable.ca3s.core.service
Methods in de.trustable.ca3s.core.service that return AcmeIdentifier Modifier and Type Method Description AcmeIdentifierAcmeIdentifierService. save(AcmeIdentifier acmeIdentifier)Save a acmeIdentifier.Methods in de.trustable.ca3s.core.service that return types with arguments of type AcmeIdentifier Modifier and Type Method Description List<AcmeIdentifier>AcmeIdentifierService. findAll()Get all the acmeIdentifiers.Optional<AcmeIdentifier>AcmeIdentifierService. findOne(Long id)Get the "id" acmeIdentifier.Methods in de.trustable.ca3s.core.service with parameters of type AcmeIdentifier Modifier and Type Method Description AcmeIdentifierAcmeIdentifierService. save(AcmeIdentifier acmeIdentifier)Save a acmeIdentifier. -
Uses of AcmeIdentifier in de.trustable.ca3s.core.service.impl
Methods in de.trustable.ca3s.core.service.impl that return AcmeIdentifier Modifier and Type Method Description AcmeIdentifierAcmeIdentifierServiceImpl. save(AcmeIdentifier acmeIdentifier)Save a acmeIdentifier.Methods in de.trustable.ca3s.core.service.impl that return types with arguments of type AcmeIdentifier Modifier and Type Method Description List<AcmeIdentifier>AcmeIdentifierServiceImpl. findAll()Get all the acmeIdentifiers.Optional<AcmeIdentifier>AcmeIdentifierServiceImpl. findOne(Long id)Get one acmeIdentifier by id.Methods in de.trustable.ca3s.core.service.impl with parameters of type AcmeIdentifier Modifier and Type Method Description AcmeIdentifierAcmeIdentifierServiceImpl. save(AcmeIdentifier acmeIdentifier)Save a acmeIdentifier. -
Uses of AcmeIdentifier in de.trustable.ca3s.core.web.rest
Methods in de.trustable.ca3s.core.web.rest that return types with arguments of type AcmeIdentifier Modifier and Type Method Description org.springframework.http.ResponseEntity<AcmeIdentifier>AcmeIdentifierResource. createAcmeIdentifier(@Valid AcmeIdentifier acmeIdentifier)POST /acme-identifiers: Create a new acmeIdentifier.org.springframework.http.ResponseEntity<AcmeIdentifier>AcmeIdentifierResource. getAcmeIdentifier(Long id)GET /acme-identifiers/:id: get the "id" acmeIdentifier.List<AcmeIdentifier>AcmeIdentifierResource. getAllAcmeIdentifiers()GET /acme-identifiers: get all the acmeIdentifiers.org.springframework.http.ResponseEntity<AcmeIdentifier>AcmeIdentifierResource. updateAcmeIdentifier(@Valid AcmeIdentifier acmeIdentifier)PUT /acme-identifiers: Updates an existing acmeIdentifier.Methods in de.trustable.ca3s.core.web.rest with parameters of type AcmeIdentifier Modifier and Type Method Description org.springframework.http.ResponseEntity<AcmeIdentifier>AcmeIdentifierResource. createAcmeIdentifier(@Valid AcmeIdentifier acmeIdentifier)POST /acme-identifiers: Create a new acmeIdentifier.org.springframework.http.ResponseEntity<AcmeIdentifier>AcmeIdentifierResource. updateAcmeIdentifier(@Valid AcmeIdentifier acmeIdentifier)PUT /acme-identifiers: Updates an existing acmeIdentifier.
-