Uses of Class
de.trustable.ca3s.core.domain.CsrAttribute
-
Packages that use CsrAttribute 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 CsrAttribute in de.trustable.ca3s.core.domain
Fields in de.trustable.ca3s.core.domain with type parameters of type CsrAttribute Modifier and Type Field Description static javax.persistence.metamodel.SingularAttribute<CsrAttribute,CSR>CsrAttribute_. csrstatic javax.persistence.metamodel.SetAttribute<CSR,CsrAttribute>CSR_. csrAttributesstatic javax.persistence.metamodel.SingularAttribute<CsrAttribute,Long>CsrAttribute_. idstatic javax.persistence.metamodel.SingularAttribute<CsrAttribute,String>CsrAttribute_. namestatic javax.persistence.metamodel.SingularAttribute<CsrAttribute,String>CsrAttribute_. valueMethods in de.trustable.ca3s.core.domain that return CsrAttribute Modifier and Type Method Description CsrAttributeCsrAttribute. csr(CSR cSR)CsrAttributeCsrAttribute. id(Long id)CsrAttributeCsrAttribute. name(String name)CsrAttributeCsrAttribute. value(String value)Methods in de.trustable.ca3s.core.domain that return types with arguments of type CsrAttribute Modifier and Type Method Description Set<CsrAttribute>CSR. getCsrAttributes()Methods in de.trustable.ca3s.core.domain with parameters of type CsrAttribute Modifier and Type Method Description CSRCSR. addCsrAttributes(CsrAttribute csrAttribute)CSRCSR. removeCsrAttributes(CsrAttribute csrAttribute)Method parameters in de.trustable.ca3s.core.domain with type arguments of type CsrAttribute Modifier and Type Method Description CSRCSR. csrAttributes(Set<CsrAttribute> csrAttributes)voidCSR. setCsrAttributes(Set<CsrAttribute> csrAttributes) -
Uses of CsrAttribute in de.trustable.ca3s.core.service
Methods in de.trustable.ca3s.core.service that return CsrAttribute Modifier and Type Method Description CsrAttributeCsrAttributeService. save(CsrAttribute csrAttribute)Save a csrAttribute.Methods in de.trustable.ca3s.core.service that return types with arguments of type CsrAttribute Modifier and Type Method Description List<CsrAttribute>CsrAttributeService. findAll()Get all the csrAttributes.Optional<CsrAttribute>CsrAttributeService. findOne(Long id)Get the "id" csrAttribute.Methods in de.trustable.ca3s.core.service with parameters of type CsrAttribute Modifier and Type Method Description CsrAttributeCsrAttributeService. save(CsrAttribute csrAttribute)Save a csrAttribute. -
Uses of CsrAttribute in de.trustable.ca3s.core.service.impl
Methods in de.trustable.ca3s.core.service.impl that return CsrAttribute Modifier and Type Method Description CsrAttributeCsrAttributeServiceImpl. save(CsrAttribute csrAttribute)Save a csrAttribute.Methods in de.trustable.ca3s.core.service.impl that return types with arguments of type CsrAttribute Modifier and Type Method Description List<CsrAttribute>CsrAttributeServiceImpl. findAll()Get all the csrAttributes.Optional<CsrAttribute>CsrAttributeServiceImpl. findOne(Long id)Get one csrAttribute by id.Methods in de.trustable.ca3s.core.service.impl with parameters of type CsrAttribute Modifier and Type Method Description CsrAttributeCsrAttributeServiceImpl. save(CsrAttribute csrAttribute)Save a csrAttribute. -
Uses of CsrAttribute in de.trustable.ca3s.core.web.rest
Methods in de.trustable.ca3s.core.web.rest that return types with arguments of type CsrAttribute Modifier and Type Method Description org.springframework.http.ResponseEntity<CsrAttribute>CsrAttributeResource. createCsrAttribute(@Valid CsrAttribute csrAttribute)POST /csr-attributes: Create a new csrAttribute.List<CsrAttribute>CsrAttributeResource. getAllCsrAttributes()GET /csr-attributes: get all the csrAttributes.org.springframework.http.ResponseEntity<CsrAttribute>CsrAttributeResource. getCsrAttribute(Long id)GET /csr-attributes/:id: get the "id" csrAttribute.org.springframework.http.ResponseEntity<CsrAttribute>CsrAttributeResource. updateCsrAttribute(@Valid CsrAttribute csrAttribute)PUT /csr-attributes: Updates an existing csrAttribute.Methods in de.trustable.ca3s.core.web.rest with parameters of type CsrAttribute Modifier and Type Method Description org.springframework.http.ResponseEntity<CsrAttribute>CsrAttributeResource. createCsrAttribute(@Valid CsrAttribute csrAttribute)POST /csr-attributes: Create a new csrAttribute.org.springframework.http.ResponseEntity<CsrAttribute>CsrAttributeResource. updateCsrAttribute(@Valid CsrAttribute csrAttribute)PUT /csr-attributes: Updates an existing csrAttribute.
-