Uses of Class
de.trustable.ca3s.core.domain.AcmeChallenge
-
Packages that use AcmeChallenge Package Description de.trustable.ca3s.core.domain JPA domain objects.de.trustable.ca3s.core.service Service layer beans.de.trustable.ca3s.core.service.dto.acme de.trustable.ca3s.core.service.impl de.trustable.ca3s.core.web.rest Spring MVC REST controllers. -
-
Uses of AcmeChallenge in de.trustable.ca3s.core.domain
Fields in de.trustable.ca3s.core.domain with type parameters of type AcmeChallenge Modifier and Type Field Description static javax.persistence.metamodel.SingularAttribute<AcmeChallenge,AcmeAuthorization>AcmeChallenge_. acmeAuthorizationstatic javax.persistence.metamodel.SingularAttribute<AcmeChallenge,Long>AcmeChallenge_. challengeIdstatic javax.persistence.metamodel.SetAttribute<AcmeAuthorization,AcmeChallenge>AcmeAuthorization_. challengesstatic javax.persistence.metamodel.SingularAttribute<AcmeChallenge,Long>AcmeChallenge_. idstatic javax.persistence.metamodel.SingularAttribute<AcmeChallenge,ChallengeStatus>AcmeChallenge_. statusstatic javax.persistence.metamodel.SingularAttribute<AcmeChallenge,String>AcmeChallenge_. tokenstatic javax.persistence.metamodel.SingularAttribute<AcmeChallenge,String>AcmeChallenge_. typestatic javax.persistence.metamodel.SingularAttribute<AcmeChallenge,Instant>AcmeChallenge_. validatedstatic javax.persistence.metamodel.SingularAttribute<AcmeChallenge,String>AcmeChallenge_. valueMethods in de.trustable.ca3s.core.domain that return AcmeChallenge Modifier and Type Method Description AcmeChallengeAcmeChallenge. acmeAuthorization(AcmeAuthorization acmeAuthorization)AcmeChallengeAcmeChallenge. challengeId(Long challengeId)AcmeChallengeAcmeChallenge. status(ChallengeStatus status)AcmeChallengeAcmeChallenge. token(String token)AcmeChallengeAcmeChallenge. type(String type)AcmeChallengeAcmeChallenge. validated(Instant validated)AcmeChallengeAcmeChallenge. value(String value)Methods in de.trustable.ca3s.core.domain that return types with arguments of type AcmeChallenge Modifier and Type Method Description Set<AcmeChallenge>AcmeAuthorization. getChallenges()Methods in de.trustable.ca3s.core.domain with parameters of type AcmeChallenge Modifier and Type Method Description AcmeAuthorizationAcmeAuthorization. addChallenges(AcmeChallenge acmeChallenge)AcmeAuthorizationAcmeAuthorization. removeChallenges(AcmeChallenge acmeChallenge)Method parameters in de.trustable.ca3s.core.domain with type arguments of type AcmeChallenge Modifier and Type Method Description AcmeAuthorizationAcmeAuthorization. challenges(Set<AcmeChallenge> acmeChallenges)voidAcmeAuthorization. setChallenges(Set<AcmeChallenge> acmeChallenges) -
Uses of AcmeChallenge in de.trustable.ca3s.core.service
Methods in de.trustable.ca3s.core.service that return AcmeChallenge Modifier and Type Method Description AcmeChallengeAcmeChallengeService. save(AcmeChallenge acmeChallenge)Save a acmeChallenge.Methods in de.trustable.ca3s.core.service that return types with arguments of type AcmeChallenge Modifier and Type Method Description List<AcmeChallenge>AcmeChallengeService. findAll()Get all the acmeChallenges.Optional<AcmeChallenge>AcmeChallengeService. findOne(Long id)Get the "id" acmeChallenge.Methods in de.trustable.ca3s.core.service with parameters of type AcmeChallenge Modifier and Type Method Description AcmeChallengeAcmeChallengeService. save(AcmeChallenge acmeChallenge)Save a acmeChallenge. -
Uses of AcmeChallenge in de.trustable.ca3s.core.service.dto.acme
Constructors in de.trustable.ca3s.core.service.dto.acme with parameters of type AcmeChallenge Constructor Description ChallengeResponse(AcmeChallenge challengeDao, String url) -
Uses of AcmeChallenge in de.trustable.ca3s.core.service.impl
Methods in de.trustable.ca3s.core.service.impl that return AcmeChallenge Modifier and Type Method Description AcmeChallengeAcmeChallengeServiceImpl. save(AcmeChallenge acmeChallenge)Save a acmeChallenge.Methods in de.trustable.ca3s.core.service.impl that return types with arguments of type AcmeChallenge Modifier and Type Method Description List<AcmeChallenge>AcmeChallengeServiceImpl. findAll()Get all the acmeChallenges.Optional<AcmeChallenge>AcmeChallengeServiceImpl. findOne(Long id)Get one acmeChallenge by id.Methods in de.trustable.ca3s.core.service.impl with parameters of type AcmeChallenge Modifier and Type Method Description AcmeChallengeAcmeChallengeServiceImpl. save(AcmeChallenge acmeChallenge)Save a acmeChallenge. -
Uses of AcmeChallenge in de.trustable.ca3s.core.web.rest
Methods in de.trustable.ca3s.core.web.rest that return types with arguments of type AcmeChallenge Modifier and Type Method Description org.springframework.http.ResponseEntity<AcmeChallenge>AcmeChallengeResource. createAcmeChallenge(@Valid AcmeChallenge acmeChallenge)POST /acme-challenges: Create a new acmeChallenge.org.springframework.http.ResponseEntity<AcmeChallenge>AcmeChallengeResource. getAcmeChallenge(Long id)GET /acme-challenges/:id: get the "id" acmeChallenge.List<AcmeChallenge>AcmeChallengeResource. getAllAcmeChallenges()GET /acme-challenges: get all the acmeChallenges.org.springframework.http.ResponseEntity<AcmeChallenge>AcmeChallengeResource. updateAcmeChallenge(@Valid AcmeChallenge acmeChallenge)PUT /acme-challenges: Updates an existing acmeChallenge.Methods in de.trustable.ca3s.core.web.rest with parameters of type AcmeChallenge Modifier and Type Method Description org.springframework.http.ResponseEntity<AcmeChallenge>AcmeChallengeResource. createAcmeChallenge(@Valid AcmeChallenge acmeChallenge)POST /acme-challenges: Create a new acmeChallenge.org.springframework.http.ResponseEntity<AcmeChallenge>AcmeChallengeResource. updateAcmeChallenge(@Valid AcmeChallenge acmeChallenge)PUT /acme-challenges: Updates an existing acmeChallenge.
-