Uses of Class
de.trustable.ca3s.core.domain.RDNAttribute
-
Packages that use RDNAttribute 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 RDNAttribute in de.trustable.ca3s.core.domain
Fields in de.trustable.ca3s.core.domain with type parameters of type RDNAttribute Modifier and Type Field Description static javax.persistence.metamodel.SingularAttribute<RDNAttribute,String>RDNAttribute_. attributeTypestatic javax.persistence.metamodel.SingularAttribute<RDNAttribute,String>RDNAttribute_. attributeValuestatic javax.persistence.metamodel.SingularAttribute<RDNAttribute,Long>RDNAttribute_. idstatic javax.persistence.metamodel.SingularAttribute<RDNAttribute,RDN>RDNAttribute_. rdnstatic javax.persistence.metamodel.SetAttribute<RDN,RDNAttribute>RDN_. rdnAttributesMethods in de.trustable.ca3s.core.domain that return RDNAttribute Modifier and Type Method Description RDNAttributeRDNAttribute. attributeType(String attributeType)RDNAttributeRDNAttribute. attributeValue(String attributeValue)RDNAttributeRDNAttribute. id(Long id)RDNAttributeRDNAttribute. rdn(RDN rDN)Methods in de.trustable.ca3s.core.domain that return types with arguments of type RDNAttribute Modifier and Type Method Description Set<RDNAttribute>RDN. getRdnAttributes()Methods in de.trustable.ca3s.core.domain with parameters of type RDNAttribute Modifier and Type Method Description RDNRDN. addRdnAttributes(RDNAttribute rDNAttribute)RDNRDN. removeRdnAttributes(RDNAttribute rDNAttribute)Method parameters in de.trustable.ca3s.core.domain with type arguments of type RDNAttribute Modifier and Type Method Description RDNRDN. rdnAttributes(Set<RDNAttribute> rDNAttributes)voidRDN. setRdnAttributes(Set<RDNAttribute> rDNAttributes) -
Uses of RDNAttribute in de.trustable.ca3s.core.service
Methods in de.trustable.ca3s.core.service that return RDNAttribute Modifier and Type Method Description RDNAttributeRDNAttributeService. save(RDNAttribute rDNAttribute)Save a rDNAttribute.Methods in de.trustable.ca3s.core.service that return types with arguments of type RDNAttribute Modifier and Type Method Description List<RDNAttribute>RDNAttributeService. findAll()Get all the rDNAttributes.Optional<RDNAttribute>RDNAttributeService. findOne(Long id)Get the "id" rDNAttribute.Methods in de.trustable.ca3s.core.service with parameters of type RDNAttribute Modifier and Type Method Description RDNAttributeRDNAttributeService. save(RDNAttribute rDNAttribute)Save a rDNAttribute. -
Uses of RDNAttribute in de.trustable.ca3s.core.service.impl
Methods in de.trustable.ca3s.core.service.impl that return RDNAttribute Modifier and Type Method Description RDNAttributeRDNAttributeServiceImpl. save(RDNAttribute rDNAttribute)Save a rDNAttribute.Methods in de.trustable.ca3s.core.service.impl that return types with arguments of type RDNAttribute Modifier and Type Method Description List<RDNAttribute>RDNAttributeServiceImpl. findAll()Get all the rDNAttributes.Optional<RDNAttribute>RDNAttributeServiceImpl. findOne(Long id)Get one rDNAttribute by id.Methods in de.trustable.ca3s.core.service.impl with parameters of type RDNAttribute Modifier and Type Method Description RDNAttributeRDNAttributeServiceImpl. save(RDNAttribute rDNAttribute)Save a rDNAttribute. -
Uses of RDNAttribute in de.trustable.ca3s.core.web.rest
Methods in de.trustable.ca3s.core.web.rest that return types with arguments of type RDNAttribute Modifier and Type Method Description org.springframework.http.ResponseEntity<RDNAttribute>RDNAttributeResource. createRDNAttribute(@Valid RDNAttribute rDNAttribute)POST /rdn-attributes: Create a new rDNAttribute.List<RDNAttribute>RDNAttributeResource. getAllRDNAttributes()GET /rdn-attributes: get all the rDNAttributes.org.springframework.http.ResponseEntity<RDNAttribute>RDNAttributeResource. getRDNAttribute(Long id)GET /rdn-attributes/:id: get the "id" rDNAttribute.org.springframework.http.ResponseEntity<RDNAttribute>RDNAttributeResource. updateRDNAttribute(@Valid RDNAttribute rDNAttribute)PUT /rdn-attributes: Updates an existing rDNAttribute.Methods in de.trustable.ca3s.core.web.rest with parameters of type RDNAttribute Modifier and Type Method Description org.springframework.http.ResponseEntity<RDNAttribute>RDNAttributeResource. createRDNAttribute(@Valid RDNAttribute rDNAttribute)POST /rdn-attributes: Create a new rDNAttribute.org.springframework.http.ResponseEntity<RDNAttribute>RDNAttributeResource. updateRDNAttribute(@Valid RDNAttribute rDNAttribute)PUT /rdn-attributes: Updates an existing rDNAttribute.
-