Uses of Class
de.trustable.ca3s.core.domain.ProtectedContent
-
Packages that use ProtectedContent 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.dto Data Transfer Objects.de.trustable.ca3s.core.service.impl de.trustable.ca3s.core.service.util -
-
Uses of ProtectedContent in de.trustable.ca3s.core.domain
Fields in de.trustable.ca3s.core.domain with type parameters of type ProtectedContent Modifier and Type Field Description static javax.persistence.metamodel.SingularAttribute<ProtectedContent,String>ProtectedContent_. contentBase64static javax.persistence.metamodel.SingularAttribute<ProtectedContent,Instant>ProtectedContent_. createdOnstatic javax.persistence.metamodel.SingularAttribute<ProtectedContent,Instant>ProtectedContent_. deleteAfterstatic javax.persistence.metamodel.SingularAttribute<ProtectedContent,Long>ProtectedContent_. idstatic javax.persistence.metamodel.SingularAttribute<ProtectedContent,Integer>ProtectedContent_. leftUsagesstatic javax.persistence.metamodel.SingularAttribute<ProtectedContent,Long>ProtectedContent_. relatedIdstatic javax.persistence.metamodel.SingularAttribute<ProtectedContent,ContentRelationType>ProtectedContent_. relationTypestatic javax.persistence.metamodel.SingularAttribute<CAConnectorConfig,ProtectedContent>CAConnectorConfig_. secretstatic javax.persistence.metamodel.SingularAttribute<ProtectedContent,ProtectedContentType>ProtectedContent_. typestatic javax.persistence.metamodel.SingularAttribute<ProtectedContent,Instant>ProtectedContent_. validToMethods in de.trustable.ca3s.core.domain that return ProtectedContent Modifier and Type Method Description ProtectedContentProtectedContent. contentBase64(String contentBase64)ProtectedContentProtectedContent. createdOn(Instant createdOn)ProtectedContentProtectedContent. deleteAfter(Instant deleteAfter)ProtectedContentCAConnectorConfig. getSecret()ProtectedContentProtectedContent. id(Long id)ProtectedContentProtectedContent. leftUsages(Integer leftUsages)ProtectedContentProtectedContent. relatedId(Long relatedId)ProtectedContentProtectedContent. relationType(ContentRelationType relationType)ProtectedContentProtectedContent. type(ProtectedContentType type)ProtectedContentProtectedContent. validTo(Instant validTo)Methods in de.trustable.ca3s.core.domain with parameters of type ProtectedContent Modifier and Type Method Description CAConnectorConfigCAConnectorConfig. secret(ProtectedContent protectedContent)voidCAConnectorConfig. setSecret(ProtectedContent protectedContent) -
Uses of ProtectedContent in de.trustable.ca3s.core.repository
Methods in de.trustable.ca3s.core.repository that return types with arguments of type ProtectedContent Modifier and Type Method Description List<ProtectedContent>ProtectedContentRepository. findByCertificateId(Long certId)List<ProtectedContent>ProtectedContentRepository. findByCSRId(Long csrId)org.springframework.data.domain.Page<ProtectedContent>ProtectedContentRepository. findByDeleteAfterPassed(org.springframework.data.domain.Pageable pageable, Instant deleteAfter)List<ProtectedContent>ProtectedContentRepository. findByTypeRelationContentB64(ProtectedContentType type, ContentRelationType relationType, String contentB64)List<ProtectedContent>ProtectedContentRepository. findByTypeRelationId(ProtectedContentType type, ContentRelationType relationType, Long id)org.springframework.data.domain.Page<ProtectedContent>ProtectedContentRepository. findByValidToPassed(org.springframework.data.domain.Pageable pageable, Instant validTo) -
Uses of ProtectedContent in de.trustable.ca3s.core.service
Methods in de.trustable.ca3s.core.service that return ProtectedContent Modifier and Type Method Description ProtectedContentProtectedContentService. save(ProtectedContent protectedContent)Save a protectedContent.Methods in de.trustable.ca3s.core.service that return types with arguments of type ProtectedContent Modifier and Type Method Description List<ProtectedContent>ProtectedContentService. findAll()Get all the protectedContents.Optional<ProtectedContent>ProtectedContentService. findOne(Long id)Get the "id" protectedContent.Methods in de.trustable.ca3s.core.service with parameters of type ProtectedContent Modifier and Type Method Description ProtectedContentProtectedContentService. save(ProtectedContent protectedContent)Save a protectedContent. -
Uses of ProtectedContent in de.trustable.ca3s.core.service.dto
Constructors in de.trustable.ca3s.core.service.dto with parameters of type ProtectedContent Constructor Description CertificateView(Certificate cert, ProtectedContent pt) -
Uses of ProtectedContent in de.trustable.ca3s.core.service.impl
Methods in de.trustable.ca3s.core.service.impl that return ProtectedContent Modifier and Type Method Description ProtectedContentProtectedContentServiceImpl. save(ProtectedContent protectedContent)Save a protectedContent.Methods in de.trustable.ca3s.core.service.impl that return types with arguments of type ProtectedContent Modifier and Type Method Description List<ProtectedContent>ProtectedContentServiceImpl. findAll()Get all the protectedContents.Optional<ProtectedContent>ProtectedContentServiceImpl. findOne(Long id)Get one protectedContent by id.Methods in de.trustable.ca3s.core.service.impl with parameters of type ProtectedContent Modifier and Type Method Description ProtectedContentProtectedContentServiceImpl. save(ProtectedContent protectedContent)Save a protectedContent. -
Uses of ProtectedContent in de.trustable.ca3s.core.service.util
Methods in de.trustable.ca3s.core.service.util that return ProtectedContent Modifier and Type Method Description ProtectedContentProtectedContentUtil. createDerivedProtectedContent(String plainText, ProtectedContentType pct, ContentRelationType crt, long connectionId, int leftUsages, Instant validTo)ProtectedContentProtectedContentUtil. createProtectedContent(String plainText, ProtectedContentType pct, ContentRelationType crt, long connectionId)create a new ProtectedContent object and save the given contentProtectedContentProtectedContentUtil. createProtectedContent(String plainText, ProtectedContentType pct, ContentRelationType crt, long connectionId, int leftUsages, Instant validTo)create a new ProtectedContent object and save the given contentProtectedContentProtectedContentUtil. createProtectedContent(String plainText, ProtectedContentType pct, ContentRelationType crt, long connectionId, Instant validTo)create a new ProtectedContent object and save the given contentMethods in de.trustable.ca3s.core.service.util that return types with arguments of type ProtectedContent Modifier and Type Method Description List<ProtectedContent>ProtectedContentUtil. findProtectedContentBySecret(String plainText, ProtectedContentType type, ContentRelationType crt)List<ProtectedContent>ProtectedContentUtil. retrieveProtectedContent(ProtectedContentType type, ContentRelationType crt, long id)
-