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.impl de.trustable.ca3s.core.service.util de.trustable.ca3s.core.web.rest Spring MVC REST controllers. -
-
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_. 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<RequestProxyConfig,ProtectedContent>RequestProxyConfig_. 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)ProtectedContentCAConnectorConfig. getSecret()ProtectedContentRequestProxyConfig. getSecret()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)RequestProxyConfigRequestProxyConfig. secret(ProtectedContent protectedContent)voidCAConnectorConfig. setSecret(ProtectedContent protectedContent)voidRequestProxyConfig. 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)List<ProtectedContent>ProtectedContentRepository. findByDeleteAfterPassed(Instant deleteAfter)List<ProtectedContent>ProtectedContentRepository. findByTypeRelationId(ProtectedContentType type, ContentRelationType relationType, Long id) -
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.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. 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 contentMethods in de.trustable.ca3s.core.service.util that return types with arguments of type ProtectedContent Modifier and Type Method Description List<ProtectedContent>ProtectedContentUtil. retrieveProtectedContent(ProtectedContentType type, ContentRelationType crt, long id) -
Uses of ProtectedContent in de.trustable.ca3s.core.web.rest
Methods in de.trustable.ca3s.core.web.rest that return types with arguments of type ProtectedContent Modifier and Type Method Description org.springframework.http.ResponseEntity<ProtectedContent>ProtectedContentResource. createProtectedContent(@Valid ProtectedContent protectedContent)POST /protected-contents: Create a new protectedContent.List<ProtectedContent>ProtectedContentResource. getAllProtectedContents()GET /protected-contents: get all the protectedContents.org.springframework.http.ResponseEntity<ProtectedContent>ProtectedContentResource. getProtectedContent(Long id)GET /protected-contents/:id: get the "id" protectedContent.org.springframework.http.ResponseEntity<ProtectedContent>ProtectedContentResource. updateProtectedContent(@Valid ProtectedContent protectedContent)PUT /protected-contents: Updates an existing protectedContent.Methods in de.trustable.ca3s.core.web.rest with parameters of type ProtectedContent Modifier and Type Method Description org.springframework.http.ResponseEntity<ProtectedContent>ProtectedContentResource. createProtectedContent(@Valid ProtectedContent protectedContent)POST /protected-contents: Create a new protectedContent.org.springframework.http.ResponseEntity<ProtectedContent>ProtectedContentResource. updateProtectedContent(@Valid ProtectedContent protectedContent)PUT /protected-contents: Updates an existing protectedContent.
-