Uses of Class
de.trustable.ca3s.core.domain.AcmeNonce
-
Packages that use AcmeNonce 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.de.trustable.ca3s.core.web.rest.acme -
-
Uses of AcmeNonce in de.trustable.ca3s.core.domain
Fields in de.trustable.ca3s.core.domain with type parameters of type AcmeNonce Modifier and Type Field Description static javax.persistence.metamodel.SingularAttribute<AcmeNonce,Instant>AcmeNonce_. expiresAtstatic javax.persistence.metamodel.SingularAttribute<AcmeNonce,Long>AcmeNonce_. idstatic javax.persistence.metamodel.SingularAttribute<AcmeNonce,String>AcmeNonce_. nonceValueMethods in de.trustable.ca3s.core.domain that return AcmeNonce Modifier and Type Method Description AcmeNonceAcmeNonce. expiresAt(Instant expiresAt)AcmeNonceAcmeNonce. nonceValue(String nonceValue) -
Uses of AcmeNonce in de.trustable.ca3s.core.repository
Methods in de.trustable.ca3s.core.repository that return types with arguments of type AcmeNonce Modifier and Type Method Description List<AcmeNonce>AcmeNonceRepository. findByNonceExpiryDate(Date expiredBefore)List<AcmeNonce>AcmeNonceRepository. findByNonceValue(String nonceValue) -
Uses of AcmeNonce in de.trustable.ca3s.core.service
Methods in de.trustable.ca3s.core.service that return AcmeNonce Modifier and Type Method Description AcmeNonceAcmeNonceService. save(AcmeNonce acmeNonce)Save a acmeNonce.Methods in de.trustable.ca3s.core.service that return types with arguments of type AcmeNonce Modifier and Type Method Description List<AcmeNonce>AcmeNonceService. findAll()Get all the acmeNonces.Optional<AcmeNonce>AcmeNonceService. findOne(Long id)Get the "id" acmeNonce.Methods in de.trustable.ca3s.core.service with parameters of type AcmeNonce Modifier and Type Method Description AcmeNonceAcmeNonceService. save(AcmeNonce acmeNonce)Save a acmeNonce. -
Uses of AcmeNonce in de.trustable.ca3s.core.service.impl
Methods in de.trustable.ca3s.core.service.impl that return AcmeNonce Modifier and Type Method Description AcmeNonceAcmeNonceServiceImpl. save(AcmeNonce acmeNonce)Save a acmeNonce.Methods in de.trustable.ca3s.core.service.impl that return types with arguments of type AcmeNonce Modifier and Type Method Description List<AcmeNonce>AcmeNonceServiceImpl. findAll()Get all the acmeNonces.Optional<AcmeNonce>AcmeNonceServiceImpl. findOne(Long id)Get one acmeNonce by id.Methods in de.trustable.ca3s.core.service.impl with parameters of type AcmeNonce Modifier and Type Method Description AcmeNonceAcmeNonceServiceImpl. save(AcmeNonce acmeNonce)Save a acmeNonce. -
Uses of AcmeNonce in de.trustable.ca3s.core.web.rest
Methods in de.trustable.ca3s.core.web.rest that return types with arguments of type AcmeNonce Modifier and Type Method Description org.springframework.http.ResponseEntity<AcmeNonce>AcmeNonceResource. createAcmeNonce(AcmeNonce acmeNonce)POST /acme-nonces: Create a new acmeNonce.org.springframework.http.ResponseEntity<AcmeNonce>AcmeNonceResource. getAcmeNonce(Long id)GET /acme-nonces/:id: get the "id" acmeNonce.List<AcmeNonce>AcmeNonceResource. getAllAcmeNonces()GET /acme-nonces: get all the acmeNonces.org.springframework.http.ResponseEntity<AcmeNonce>AcmeNonceResource. updateAcmeNonce(AcmeNonce acmeNonce)PUT /acme-nonces: Updates an existing acmeNonce.Methods in de.trustable.ca3s.core.web.rest with parameters of type AcmeNonce Modifier and Type Method Description org.springframework.http.ResponseEntity<AcmeNonce>AcmeNonceResource. createAcmeNonce(AcmeNonce acmeNonce)POST /acme-nonces: Create a new acmeNonce.org.springframework.http.ResponseEntity<AcmeNonce>AcmeNonceResource. updateAcmeNonce(AcmeNonce acmeNonce)PUT /acme-nonces: Updates an existing acmeNonce. -
Uses of AcmeNonce in de.trustable.ca3s.core.web.rest.acme
Methods in de.trustable.ca3s.core.web.rest.acme that return AcmeNonce Modifier and Type Method Description protected AcmeNonceACMEController. getNewNonce()
-